Package org.w3c.dom.svg
Interface SVGPointList
-
public interface SVGPointList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVGPointappendItem(SVGPoint newItem)voidclear()SVGPointgetItem(int index)intgetNumberOfItems()SVGPointinitialize(SVGPoint newItem)SVGPointinsertItemBefore(SVGPoint newItem, int index)SVGPointremoveItem(int index)SVGPointreplaceItem(SVGPoint newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
SVGPoint initialize(SVGPoint newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
getItem
SVGPoint getItem(int index) throws DOMException
- Throws:
DOMException
-
insertItemBefore
SVGPoint insertItemBefore(SVGPoint newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
replaceItem
SVGPoint replaceItem(SVGPoint newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
removeItem
SVGPoint removeItem(int index) throws DOMException
- Throws:
DOMException
-
appendItem
SVGPoint appendItem(SVGPoint newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
-