Package org.w3c.dom.svg
Interface SVGNumberList
-
public interface SVGNumberList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVGNumberappendItem(SVGNumber newItem)voidclear()SVGNumbergetItem(int index)intgetNumberOfItems()SVGNumberinitialize(SVGNumber newItem)SVGNumberinsertItemBefore(SVGNumber newItem, int index)SVGNumberremoveItem(int index)SVGNumberreplaceItem(SVGNumber newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
SVGNumber initialize(SVGNumber newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
getItem
SVGNumber getItem(int index) throws DOMException
- Throws:
DOMException
-
insertItemBefore
SVGNumber insertItemBefore(SVGNumber newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
replaceItem
SVGNumber replaceItem(SVGNumber newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
removeItem
SVGNumber removeItem(int index) throws DOMException
- Throws:
DOMException
-
appendItem
SVGNumber appendItem(SVGNumber newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
-