summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPointList.java
blob: b3e41c654b72a45f6b27b791f3a43f940afc6e65 (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 SVGPointList {
  public int getNumberOfItems( );

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