niagara-ax/decompiled/org/w3c/dom/svg/SVGPointList.java
2026-03-17 13:31:18 -07:00

22 lines
601 B
Java

package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGPointList {
SVGPoint appendItem(SVGPoint sVGPoint) throws DOMException, SVGException;
void clear() throws DOMException;
SVGPoint getItem(int i) throws DOMException;
int getNumberOfItems();
SVGPoint initialize(SVGPoint sVGPoint) throws DOMException, SVGException;
SVGPoint insertItemBefore(SVGPoint sVGPoint, int i) throws DOMException, SVGException;
SVGPoint removeItem(int i) throws DOMException;
SVGPoint replaceItem(SVGPoint sVGPoint, int i) throws DOMException, SVGException;
}