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

22 lines
616 B
Java

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