Package org.w3c.dom.svg
Interface SVGTransformList
-
public interface SVGTransformList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVGTransformappendItem(SVGTransform newItem)voidclear()SVGTransformconsolidate()SVGTransformcreateSVGTransformFromMatrix(SVGMatrix matrix)SVGTransformgetItem(int index)intgetNumberOfItems()SVGTransforminitialize(SVGTransform newItem)SVGTransforminsertItemBefore(SVGTransform newItem, int index)SVGTransformremoveItem(int index)SVGTransformreplaceItem(SVGTransform newItem, int index)
-
-
-
Method Detail
-
getNumberOfItems
int getNumberOfItems()
-
clear
void clear() throws DOMException- Throws:
DOMException
-
initialize
SVGTransform initialize(SVGTransform newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
getItem
SVGTransform getItem(int index) throws DOMException
- Throws:
DOMException
-
insertItemBefore
SVGTransform insertItemBefore(SVGTransform newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
replaceItem
SVGTransform replaceItem(SVGTransform newItem, int index) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
removeItem
SVGTransform removeItem(int index) throws DOMException
- Throws:
DOMException
-
appendItem
SVGTransform appendItem(SVGTransform newItem) throws DOMException, SVGException
- Throws:
DOMExceptionSVGException
-
createSVGTransformFromMatrix
SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix)
-
consolidate
SVGTransform consolidate()
-
-