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, 0 insertions, 23 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGPathSegList.java b/src/main/java/org/w3c/dom/svg/SVGPathSegList.java
deleted file mode 100644
index 7d688f3..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGPathSegList.java
+++ /dev/null
@@ -1,23 +0,0 @@
-
-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;
-}