Code

Add w3c svg-dom and smil-dom java interfaces
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGPointList.java
1 \r
2 package org.w3c.dom.svg;\r
3 \r
4 import org.w3c.dom.DOMException;\r
5 \r
6 public interface SVGPointList {\r
7   public int getNumberOfItems( );\r
8 \r
9   public void   clear (  )\r
10                   throws DOMException;\r
11   public SVGPoint initialize ( SVGPoint newItem )\r
12                   throws DOMException, SVGException;\r
13   public SVGPoint getItem ( int index )\r
14                   throws DOMException;\r
15   public SVGPoint insertItemBefore ( SVGPoint newItem, int index )\r
16                   throws DOMException, SVGException;\r
17   public SVGPoint replaceItem ( SVGPoint newItem, int index )\r
18                   throws DOMException, SVGException;\r
19   public SVGPoint removeItem ( int index )\r
20                   throws DOMException;\r
21   public SVGPoint appendItem ( SVGPoint newItem )\r
22                   throws DOMException, SVGException;\r
23 }\r