summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGTransformList.java
blob: 238d2a75c20fc6e34edd38b583ce74023c0d23cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGTransformList {
  public int getNumberOfItems( );

  public void   clear (  )
                  throws DOMException;
  public SVGTransform initialize ( SVGTransform newItem )
                  throws DOMException, SVGException;
  public SVGTransform getItem ( int index )
                  throws DOMException;
  public SVGTransform insertItemBefore ( SVGTransform newItem, int index )
                  throws DOMException, SVGException;
  public SVGTransform replaceItem ( SVGTransform newItem, int index )
                  throws DOMException, SVGException;
  public SVGTransform removeItem ( int index )
                  throws DOMException;
  public SVGTransform appendItem ( SVGTransform newItem )
                  throws DOMException, SVGException;
  public SVGTransform createSVGTransformFromMatrix ( SVGMatrix matrix );
  public SVGTransform consolidate (  );
}