Package org.loboevolution.html.dom.svg
Interface SVGTransformList
- All Known Implementing Classes:
SVGTransformListImpl
public interface SVGTransformList
SVGTransformList interface.
-
Method Summary
Modifier and TypeMethodDescriptionappendItem
(SVGTransform newItem) appendItem.void
clear()
clear.consolidate.createSVGTransformFromMatrix.getItem
(int index) getItem.int
getNumberOfItems.initialize
(SVGTransform newItem) initialize.insertItemBefore
(SVGTransform newItem, int index) insertItemBefore.removeItem
(int index) removeItem.replaceItem
(SVGTransform 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
- aSVGTransform
object.- Returns:
- a
SVGTransform
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
SVGTransform
object. - Throws:
DOMException
- if any.
-
insertItemBefore
insertItemBefore.
- Parameters:
newItem
- aSVGTransform
object.index
- aInteger
object.- Returns:
- a
SVGTransform
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-
replaceItem
replaceItem.
- Parameters:
newItem
- aSVGTransform
object.index
- aInteger
object.- Returns:
- a
SVGTransform
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
SVGTransform
object. - Throws:
DOMException
- if any.
-
appendItem
appendItem.
- Parameters:
newItem
- aSVGTransform
object.- Returns:
- a
SVGTransform
object. - Throws:
DOMException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.SVGException
- if any.
-
createSVGTransformFromMatrix
createSVGTransformFromMatrix.
- Parameters:
matrix
- aSVGMatrix
object.- Returns:
- a
SVGTransform
object.
-
consolidate
SVGTransform consolidate()consolidate.
- Returns:
- a
SVGTransform
object.
-