17 lines
354 B
Java
17 lines
354 B
Java
package org.apache.batik.dom.svg;
|
|
|
|
import org.w3c.dom.smil.ElementTimeControl;
|
|
import org.w3c.dom.svg.SVGElement;
|
|
|
|
public interface SVGAnimationContext extends SVGContext, ElementTimeControl {
|
|
float getCurrentTime();
|
|
|
|
float getHyperlinkBeginTime();
|
|
|
|
float getSimpleDuration();
|
|
|
|
float getStartTime();
|
|
|
|
SVGElement getTargetElement();
|
|
}
|