Package org.apache.batik.dom.svg
Interface SVGAnimationContext
- All Superinterfaces:
org.w3c.dom.smil.ElementTimeControl
,SVGContext
- All Known Implementing Classes:
SVGAnimateColorElementBridge
,SVGAnimateElementBridge
,SVGAnimateMotionElementBridge
,SVGAnimateTransformElementBridge
,SVGAnimationElementBridge
,SVGSetElementBridge
Context class for SVG animation elements to support extra methods.
-
Field Summary
Fields inherited from interface org.apache.batik.dom.svg.SVGContext
PERCENTAGE_FONT_SIZE, PERCENTAGE_VIEWPORT_HEIGHT, PERCENTAGE_VIEWPORT_SIZE, PERCENTAGE_VIEWPORT_WIDTH
-
Method Summary
Modifier and TypeMethodDescriptionfloat
DOM: ImplementsSVGAnimationElement.getCurrentTime()
.float
Returns the time that the document would seek to if this animation element were hyperlinked to, orNaN
if there is no such begin time.float
DOM: ImplementsSVGAnimationElement.getSimpleDuration()
.float
DOM: ImplementsSVGAnimationElement.getStartTime()
.org.w3c.dom.svg.SVGElement
DOM: ImplementsSVGAnimationElement.getTargetElement()
.Methods inherited from interface org.w3c.dom.smil.ElementTimeControl
beginElement, beginElementAt, endElement, endElementAt
Methods inherited from interface org.apache.batik.dom.svg.SVGContext
getBBox, getCTM, getFontSize, getGlobalTransform, getPixelToMM, getPixelUnitToMillimeter, getScreenTransform, getViewportHeight, getViewportWidth, setScreenTransform
-
Method Details
-
getTargetElement
org.w3c.dom.svg.SVGElement getTargetElement()DOM: ImplementsSVGAnimationElement.getTargetElement()
. -
getStartTime
float getStartTime()DOM: ImplementsSVGAnimationElement.getStartTime()
. -
getCurrentTime
float getCurrentTime()DOM: ImplementsSVGAnimationElement.getCurrentTime()
. -
getSimpleDuration
float getSimpleDuration()DOM: ImplementsSVGAnimationElement.getSimpleDuration()
. With the difference that an indefinite simple duration is returned as org.apache.batik.anim.timing.TimedElement#INDEFINITE, rather than throwing an exception. -
getHyperlinkBeginTime
float getHyperlinkBeginTime()Returns the time that the document would seek to if this animation element were hyperlinked to, orNaN
if there is no such begin time.
-