Package org.loboevolution.html.dom.svg
Interface SVGNumberList
- All Known Implementing Classes:
SVGNumberListImpl
public interface SVGNumberList
SVGNumberList interface.
-
Method Summary
Modifier and TypeMethodDescriptionappendItem
(SVGNumber newItem) appendItem.void
clear()
clear.getItem
(int index) getItem.int
getNumberOfItems.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
Integer
object.
-
clear
void clear()clear.
- Throws:
DOMException
- if any.
-
initialize
initialize.
- Parameters:
newItem
- aSVGNumber
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-
getItem
getItem.
- Parameters:
index
- aInteger
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.
-
insertItemBefore
insertItemBefore.
- Parameters:
newItem
- aSVGNumber
object.index
- aInteger
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-
replaceItem
replaceItem.
- Parameters:
newItem
- aSVGNumber
object.index
- aInteger
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-
removeItem
removeItem.
- Parameters:
index
- aInteger
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.
-
appendItem
appendItem.
- Parameters:
newItem
- aSVGNumber
object.- Returns:
- a
SVGNumber
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-