Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGNumberList.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGNumberList {
7   public int getNumberOfItems( );
9   public void   clear (  )
10                   throws DOMException;
11   public SVGNumber initialize ( SVGNumber newItem )
12                   throws DOMException, SVGException;
13   public SVGNumber getItem ( int index )
14                   throws DOMException;
15   public SVGNumber insertItemBefore ( SVGNumber newItem, int index )
16                   throws DOMException, SVGException;
17   public SVGNumber replaceItem ( SVGNumber newItem, int index )
18                   throws DOMException, SVGException;
19   public SVGNumber removeItem ( int index )
20                   throws DOMException;
21   public SVGNumber appendItem ( SVGNumber newItem )
22                   throws DOMException, SVGException;
23 }