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

22 lines
631 B
Java

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