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