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

16 lines
419 B
Java

package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
import org.w3c.dom.events.EventTarget;
import org.w3c.dom.smil.ElementTimeControl;
public interface SVGAnimationElement extends SVGElement, SVGTests, SVGExternalResourcesRequired, ElementTimeControl, EventTarget {
float getCurrentTime();
float getSimpleDuration() throws DOMException;
float getStartTime();
SVGElement getTargetElement();
}