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