Code

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