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