22 lines
616 B
Java
22 lines
616 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.DOMException;
|
|
|
|
public interface SVGNumberList {
|
|
SVGNumber appendItem(SVGNumber sVGNumber) throws DOMException, SVGException;
|
|
|
|
void clear() throws DOMException;
|
|
|
|
SVGNumber getItem(int i) throws DOMException;
|
|
|
|
int getNumberOfItems();
|
|
|
|
SVGNumber initialize(SVGNumber sVGNumber) throws DOMException, SVGException;
|
|
|
|
SVGNumber insertItemBefore(SVGNumber sVGNumber, int i) throws DOMException, SVGException;
|
|
|
|
SVGNumber removeItem(int i) throws DOMException;
|
|
|
|
SVGNumber replaceItem(SVGNumber sVGNumber, int i) throws DOMException, SVGException;
|
|
}
|