elemental2.svg.SVGAnimationElement 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.
The newest version!
package elemental2.svg;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class SVGAnimationElement extends SVGElement
implements ElementTimeControl, SVGExternalResourcesRequired, SVGTests {
public SVGAnimatedBoolean externalResourcesRequired;
public SVGStringList requiredExtensions;
public SVGStringList requiredFeatures;
public SVGStringList systemLanguage;
public SVGElement targetElement;
public native void beginElement();
public native void beginElementAt();
public native void beginElementAt(double offset);
public native void endElement();
public native void endElementAt();
public native void endElementAt(double offset);
public native double getCurrentTime();
@JsProperty
public native SVGAnimatedBoolean getExternalResourcesRequired();
@JsProperty
public native SVGStringList getRequiredExtensions();
@JsProperty
public native SVGStringList getRequiredFeatures();
public native double getSimpleDuration();
public native double getStartTime();
@JsProperty
public native SVGStringList getSystemLanguage();
public native boolean hasExtension();
public native boolean hasExtension(String extension);
@JsProperty
public native void setExternalResourcesRequired(SVGAnimatedBoolean externalResourcesRequired);
@JsProperty
public native void setRequiredExtensions(SVGStringList requiredExtensions);
@JsProperty
public native void setRequiredFeatures(SVGStringList requiredFeatures);
@JsProperty
public native void setSystemLanguage(SVGStringList systemLanguage);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy