1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGLengthList { 7 public int getNumberOfItems( ); 8 9 public void clear ( ) 10 throws DOMException ; 11 public SVGLength initialize ( SVGLength newItem ) 12 throws DOMException , SVGException; 13 public SVGLength getItem ( int index ) 14 throws DOMException ; 15 public SVGLength insertItemBefore ( SVGLength newItem, int index ) 16 throws DOMException , SVGException; 17 public SVGLength replaceItem ( SVGLength newItem, int index ) 18 throws DOMException , SVGException; 19 public SVGLength removeItem ( int index ) 20 throws DOMException ; 21 public SVGLength appendItem ( SVGLength newItem ) 22 throws DOMException , SVGException; 23 } 24 | Popular Tags |