Package org.w3c.dom.svg
Interface SVGPathSegList
-
public interface SVGPathSegList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVGPathSegappendItem(SVGPathSeg newItem)voidclear()SVGPathSeggetItem(int index)intgetNumberOfItems()SVGPathSeginitialize(SVGPathSeg newItem)SVGPathSeginsertItemBefore(SVGPathSeg newItem, int index)SVGPathSegremoveItem(int index)SVGPathSegreplaceItem(SVGPathSeg newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
SVGPathSeg initialize(SVGPathSeg newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
getItem
SVGPathSeg getItem(int index) throws DOMException
- Throws:
DOMException
-
insertItemBefore
SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
replaceItem
SVGPathSeg replaceItem(SVGPathSeg newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
removeItem
SVGPathSeg removeItem(int index) throws DOMException
- Throws:
DOMException
-
appendItem
SVGPathSeg appendItem(SVGPathSeg newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
-