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