Package org.w3c.dom.svg
Interface SVGStringList
-
public interface SVGStringList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringappendItem(java.lang.String newItem)voidclear()java.lang.StringgetItem(int index)intgetNumberOfItems()java.lang.Stringinitialize(java.lang.String newItem)java.lang.StringinsertItemBefore(java.lang.String newItem, int index)java.lang.StringremoveItem(int index)java.lang.StringreplaceItem(java.lang.String newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
java.lang.String initialize(java.lang.String newItem) throws DOMException, SVGException- Throws:
DOMExceptionSVGException
-
getItem
java.lang.String getItem(int index) throws DOMException- Throws:
DOMException
-
insertItemBefore
java.lang.String insertItemBefore(java.lang.String newItem, int index) throws DOMException, SVGException- Throws:
DOMExceptionSVGException
-
replaceItem
java.lang.String replaceItem(java.lang.String newItem, int index) throws DOMException, SVGException- Throws:
DOMExceptionSVGException
-
removeItem
java.lang.String removeItem(int index) throws DOMException- Throws:
DOMException
-
appendItem
java.lang.String appendItem(java.lang.String newItem) throws DOMException, SVGException- Throws:
DOMExceptionSVGException
-
-