elemental2.svg.SVGLengthList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-svg Show documentation
Show all versions of elemental2-svg Show documentation
Thin Java abstractions for the native SVG APIs.
package elemental2.svg;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class SVGLengthList {
public int numberOfItems;
public native SVGLength appendItem(SVGLength item);
public native Object clear();
public native SVGLength getItem(int index);
public native SVGLength initialize(SVGLength item);
public native SVGLength insertItemBefore(SVGLength item, int index);
public native SVGLength removeItem(int index);
public native SVGLength replaceItem(SVGLength item, int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy