KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGPathSegList


1
2 package org.w3c.dom.svg;
3
4 import org.w3c.dom.DOMException JavaDoc;
5
6 public interface SVGPathSegList {
7   public int getNumberOfItems( );
8
9   public void clear ( )
10                   throws DOMException JavaDoc;
11   public SVGPathSeg initialize ( SVGPathSeg newItem )
12                   throws DOMException JavaDoc, SVGException;
13   public SVGPathSeg getItem ( int index )
14                   throws DOMException JavaDoc;
15   public SVGPathSeg insertItemBefore ( SVGPathSeg newItem, int index )
16                   throws DOMException JavaDoc, SVGException;
17   public SVGPathSeg replaceItem ( SVGPathSeg newItem, int index )
18                   throws DOMException JavaDoc, SVGException;
19   public SVGPathSeg removeItem ( int index )
20                   throws DOMException JavaDoc;
21   public SVGPathSeg appendItem ( SVGPathSeg newItem )
22                   throws DOMException JavaDoc, SVGException;
23 }
24
Popular Tags