summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPathSegList.java
blob: 7d688f39ee300ede065bbccc0e6a03c408db8292 (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

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPathSegList {
  public int getNumberOfItems( );

  public void   clear (  )
                  throws DOMException;
  public SVGPathSeg initialize ( SVGPathSeg newItem )
                  throws DOMException, SVGException;
  public SVGPathSeg getItem ( int index )
                  throws DOMException;
  public SVGPathSeg insertItemBefore ( SVGPathSeg newItem, int index )
                  throws DOMException, SVGException;
  public SVGPathSeg replaceItem ( SVGPathSeg newItem, int index )
                  throws DOMException, SVGException;
  public SVGPathSeg removeItem ( int index )
                  throws DOMException;
  public SVGPathSeg appendItem ( SVGPathSeg newItem )
                  throws DOMException, SVGException;
}