summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGStringList.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGStringList.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGStringList.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGStringList.java b/src/main/java/org/w3c/dom/svg/SVGStringList.java
new file mode 100644
index 0000000..05f860c
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGStringList.java
@@ -0,0 +1,23 @@
+
+package org.w3c.dom.svg;
+
+import org.w3c.dom.DOMException;
+
+public interface SVGStringList {
+ public int getNumberOfItems( );
+
+ public void clear ( )
+ throws DOMException;
+ public String initialize ( String newItem )
+ throws DOMException, SVGException;
+ public String getItem ( int index )
+ throws DOMException;
+ public String insertItemBefore ( String newItem, int index )
+ throws DOMException, SVGException;
+ public String replaceItem ( String newItem, int index )
+ throws DOMException, SVGException;
+ public String removeItem ( int index )
+ throws DOMException;
+ public String appendItem ( String newItem )
+ throws DOMException, SVGException;
+}