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