Code

dos to unix conversion
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGTransformList.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGTransformList {
7   public int getNumberOfItems( );
9   public void   clear (  )
10                   throws DOMException;
11   public SVGTransform initialize ( SVGTransform newItem )
12                   throws DOMException, SVGException;
13   public SVGTransform getItem ( int index )
14                   throws DOMException;
15   public SVGTransform insertItemBefore ( SVGTransform newItem, int index )
16                   throws DOMException, SVGException;
17   public SVGTransform replaceItem ( SVGTransform newItem, int index )
18                   throws DOMException, SVGException;
19   public SVGTransform removeItem ( int index )
20                   throws DOMException;
21   public SVGTransform appendItem ( SVGTransform newItem )
22                   throws DOMException, SVGException;
23   public SVGTransform createSVGTransformFromMatrix ( SVGMatrix matrix );
24   public SVGTransform consolidate (  );
25 }