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