org.w3c.dom.svg
Interface SVGTransformList


public interface SVGTransformList


Method Summary
 SVGTransform appendItem(SVGTransform newItem)
           
 void clear()
           
 SVGTransform consolidate()
           
 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix)
           
 SVGTransform getItem(int index)
           
 int getNumberOfItems()
           
 SVGTransform initialize(SVGTransform newItem)
           
 SVGTransform insertItemBefore(SVGTransform newItem, int index)
           
 SVGTransform removeItem(int index)
           
 SVGTransform replaceItem(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:
DOMException
SVGException

getItem

SVGTransform getItem(int index)
                     throws DOMException
Throws:
DOMException

insertItemBefore

SVGTransform insertItemBefore(SVGTransform newItem,
                              int index)
                              throws DOMException,
                                     SVGException
Throws:
DOMException
SVGException

replaceItem

SVGTransform replaceItem(SVGTransform newItem,
                         int index)
                         throws DOMException,
                                SVGException
Throws:
DOMException
SVGException

removeItem

SVGTransform removeItem(int index)
                        throws DOMException
Throws:
DOMException

appendItem

SVGTransform appendItem(SVGTransform newItem)
                        throws DOMException,
                               SVGException
Throws:
DOMException
SVGException

createSVGTransformFromMatrix

SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix)

consolidate

SVGTransform consolidate()