Package org.loboevolution.svg
Interface SVGLengthList
- All Known Implementing Classes:
SVGLengthListImpl
public interface SVGLengthList
SVGLengthList interface.
-
Method Summary
Modifier and TypeMethodDescriptionappendItem(SVGLength newItem) appendItem.voidclear()clear.getItem(int index) getItem.intgetNumberOfItems.initialize(SVGLength newItem) initialize.insertItemBefore(SVGLength newItem, int index) insertItemBefore.removeItem(int index) removeItem.replaceItem(SVGLength 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- aSVGLengthobject.- Returns:
- a
SVGLengthobject. - 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
SVGLengthobject. - Throws:
DOMException- if any.
-
insertItemBefore
insertItemBefore.
- Parameters:
newItem- aSVGLengthobject.index- aIntegerobject.- Returns:
- a
SVGLengthobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-
replaceItem
replaceItem.
- Parameters:
newItem- aSVGLengthobject.index- aIntegerobject.- Returns:
- a
SVGLengthobject. - 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
SVGLengthobject. - Throws:
DOMException- if any.
-
appendItem
appendItem.
- Parameters:
newItem- aSVGLengthobject.- Returns:
- a
SVGLengthobject. - Throws:
DOMException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.SVGException- if any.
-