10 lines
183 B
Java
10 lines
183 B
Java
package org.apache.batik.dom.svg;
|
|
|
|
public interface SVGItem {
|
|
AbstractSVGList getParent();
|
|
|
|
String getValueAsString();
|
|
|
|
void setParent(AbstractSVGList abstractSVGList);
|
|
}
|