Package org.apache.batik.anim
Class AnimationEngine.AnimationInfo
- java.lang.Object
-
- org.apache.batik.anim.AnimationEngine.AnimationInfo
-
- Enclosing class:
- AnimationEngine
protected static class AnimationEngine.AnimationInfo extends java.lang.Object
Class to hold target information of an animation.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
attributeLocalName
The local name of the attribute or the name of the CSS property to animate.java.lang.String
attributeNamespaceURI
The namespace URI of the attribute to animate, if this is an XML attribute animation.AnimationTarget
target
The target of the animation.short
type
The type of animation.
-
Constructor Summary
Constructors Modifier Constructor Description protected
AnimationInfo()
-
-
-
Field Detail
-
target
public AnimationTarget target
The target of the animation.
-
type
public short type
The type of animation. Must be one of theANIM_TYPE_*
constants defined inAnimationEngine
.
-
attributeNamespaceURI
public java.lang.String attributeNamespaceURI
The namespace URI of the attribute to animate, if this is an XML attribute animation.
-
attributeLocalName
public java.lang.String attributeLocalName
The local name of the attribute or the name of the CSS property to animate.
-
-