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