Package org.w3c.dom.svg
Interface SVGLengthList
-
public interface SVGLengthList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVGLengthappendItem(SVGLength newItem)voidclear()SVGLengthgetItem(int index)intgetNumberOfItems()SVGLengthinitialize(SVGLength newItem)SVGLengthinsertItemBefore(SVGLength newItem, int index)SVGLengthremoveItem(int index)SVGLengthreplaceItem(SVGLength newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
SVGLength initialize(SVGLength newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
getItem
SVGLength getItem(int index) throws DOMException
- Throws:
DOMException
-
insertItemBefore
SVGLength insertItemBefore(SVGLength newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
replaceItem
SVGLength replaceItem(SVGLength newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
removeItem
SVGLength removeItem(int index) throws DOMException
- Throws:
DOMException
-
appendItem
SVGLength appendItem(SVGLength newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
-