Package org.loboevolution.svg
Interface SVGPathSegList
- All Known Implementing Classes:
SVGPathSegListImpl
public interface SVGPathSegList
SVGPathSegList interface.
-
Method Summary
Modifier and TypeMethodDescriptionappendItem(SVGPathSeg newItem) appendItem.voidclear()clear.getItem(int index) getItem.intgetNumberOfItems.initialize(SVGPathSeg newItem) initialize.insertItemBefore(SVGPathSeg newItem, int index) insertItemBefore.removeItem(int index) removeItem.replaceItem(SVGPathSeg newItem, int index) replaceItem.
-
Method Details
-
getNumberOfItems
int getNumberOfItems()getNumberOfItems.
- Returns:
- a
Integerobject.
-
clear
void clear()clear.
- Throws:
DOMException- if any.
-
initialize
initialize.
- Parameters:
newItem- aSVGPathSegobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-
getItem
getItem.
- Parameters:
index- aIntegerobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.
-
insertItemBefore
insertItemBefore.
- Parameters:
newItem- aSVGPathSegobject.index- aIntegerobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-
replaceItem
replaceItem.
- Parameters:
newItem- aSVGPathSegobject.index- aIntegerobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-
removeItem
removeItem.
- Parameters:
index- aIntegerobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.
-
appendItem
appendItem.
- Parameters:
newItem- aSVGPathSegobject.- Returns:
- a
SVGPathSegobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-