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