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