Uses of Class
org.apache.batik.anim.timing.TimedElement

Packages that use TimedElement
org.apache.batik.anim   
org.apache.batik.anim.timing   
org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree. 
 

Uses of TimedElement in org.apache.batik.anim
 

Fields in org.apache.batik.anim declared as TimedElement
protected  TimedElement AnimationException.e
          The timed element on which the error occurred.
protected  TimedElement AbstractAnimation.timedElement
          The TimedElement that controls the timing of this animation.
 

Methods in org.apache.batik.anim that return TimedElement
 TimedElement AnimationException.getElement()
          Returns the timed element that caused this animation exception.
 TimedElement AbstractAnimation.getTimedElement()
          Returns the TimedElement for this animation.
 

Constructors in org.apache.batik.anim with parameters of type TimedElement
TransformAnimation(TimedElement timedElement, AnimatableElement animatableElement, int calcMode, float[] keyTimes, float[] keySplines, boolean additive, boolean cumulative, AnimatableValue[] values, AnimatableValue from, AnimatableValue to, AnimatableValue by, short type)
          Creates a new TransformAnimation.
SimpleAnimation(TimedElement timedElement, AnimatableElement animatableElement, int calcMode, float[] keyTimes, float[] keySplines, boolean additive, boolean cumulative, AnimatableValue[] values, AnimatableValue from, AnimatableValue to, AnimatableValue by)
          Creates a new SimpleAnimation.
SetAnimation(TimedElement timedElement, AnimatableElement animatableElement, AnimatableValue to)
          Creates a new SetAnimation.
MotionAnimation(TimedElement timedElement, AnimatableElement animatableElement, int calcMode, float[] keyTimes, float[] keySplines, boolean additive, boolean cumulative, AnimatableValue[] values, AnimatableValue from, AnimatableValue to, AnimatableValue by, ExtendedGeneralPath path, float[] keyPoints, boolean rotateAuto, boolean rotateAutoReverse, float rotateAngle, short rotateAngleUnit)
          Creates a new MotionAnimation.
InterpolatingAnimation(TimedElement timedElement, AnimatableElement animatableElement, int calcMode, float[] keyTimes, float[] keySplines, boolean additive, boolean cumulative)
          Creates a new InterpolatingAnimation.
ColorAnimation(TimedElement timedElement, AnimatableElement animatableElement, int calcMode, float[] keyTimes, float[] keySplines, boolean additive, boolean cumulative, AnimatableValue[] values, AnimatableValue from, AnimatableValue to, AnimatableValue by)
          Creates a new ColorAnimation.
AnimationException(TimedElement e, String code, Object[] params)
          Creates a new AnimationException.
AbstractAnimation(TimedElement timedElement, AnimatableElement animatableElement)
          Creates a new Animation.
 

Uses of TimedElement in org.apache.batik.anim.timing
 

Subclasses of TimedElement in org.apache.batik.anim.timing
 class TimeContainer
          An abstract base class for time container elements.
 class TimedDocumentRoot
          An abstract base class for the root time container element for a document.
 

Fields in org.apache.batik.anim.timing declared as TimedElement
protected  TimedElement TimingSpecifierListProducer.owner
          The owner TimedElement used when creating the TimingSpecifiers.
protected  TimedElement TimingSpecifier.owner
          The element that owns this timing specifier.
protected  TimedElement SyncbaseTimingSpecifier.syncbaseElement
          The syncbase element.
protected  TimedElement MediaMarkerTimingSpecifier.mediaElement
          The media element.
protected  TimedElement EventbaseTimingSpecifier.eventbase
          The eventbase element.
 

Methods in org.apache.batik.anim.timing that return TimedElement
 TimedElement TimingSpecifier.getOwner()
          Returns the element that owns this timing specifier.
protected abstract  TimedElement TimedElement.getTimedElementById(String id)
          Returns the timed element with the given ID.
 TimedElement[] TimeContainer.getChildren()
          Returns an array of the children of this container.
 

Methods in org.apache.batik.anim.timing with parameters of type TimedElement
static TimingSpecifier[] TimingSpecifierListProducer.parseTimingSpecifierList(TimedElement owner, boolean isBegin, String spec, boolean useSVG11AccessKeys, boolean useSVG12AccessKeys)
          Parses a timing specifier list.
 void TimegraphListener.elementAdded(TimedElement e)
          Invoked to indicate that a timed element has been added to the document.
 void TimegraphListener.elementRemoved(TimedElement e)
          Invoked to indicate that a timed element has been removed from the document.
 void TimegraphListener.elementActivated(TimedElement e, float t)
          Invoked to indicate that a timed element has become active.
 void TimegraphListener.elementFilled(TimedElement e, float t)
          Invoked to indicate that a timed element has become inactive and is filling.
 void TimegraphListener.elementDeactivated(TimedElement e, float t)
          Invoked to indicate that a timed element has become inactive and is not filling.
 void TimegraphListener.intervalCreated(TimedElement e, Interval i)
          Invoked to indivate that an interval was created for the given timed element.
 void TimegraphListener.intervalRemoved(TimedElement e, Interval i)
          Invoked to indivate that an interval was removed for the given timed element.
 void TimegraphListener.intervalChanged(TimedElement e, Interval i)
          Invoked to indivate that an interval's endpoints were changed.
 void TimegraphListener.intervalBegan(TimedElement e, Interval i)
          Invoked to indivate that the given interval began.
 void TimegraphListener.elementRepeated(TimedElement e, int i, float t)
          Invoked to indicate that the given timed element began a repeat iteration at the specified time.
 void TimegraphListener.elementInstanceTimesChanged(TimedElement e, float isBegin)
          Invoked to indicate that the list of instance times for the given timed element has been updated.
 void TimegraphAdapter.elementAdded(TimedElement e)
          Invoked to indicate that a timed element has been added to the document.
 void TimegraphAdapter.elementRemoved(TimedElement e)
          Invoked to indicate that a timed element has been removed from the document.
 void TimegraphAdapter.elementActivated(TimedElement e, float t)
          Invoked to indicate that a timed element has become active.
 void TimegraphAdapter.elementFilled(TimedElement e, float t)
          Invoked to indicate that a timed element has become inactive and is filling.
 void TimegraphAdapter.elementDeactivated(TimedElement e, float t)
          Invoked to indicate that a timed element has become inactive and is not filling.
 void TimegraphAdapter.intervalCreated(TimedElement e, Interval i)
          Invoked to indivate that an interval was created for the given timed element.
 void TimegraphAdapter.intervalRemoved(TimedElement e, Interval i)
          Invoked to indivate that an interval was removed for the given timed element.
 void TimegraphAdapter.intervalChanged(TimedElement e, Interval i)
          Invoked to indivate that an interval's endpoints were changed.
 void TimegraphAdapter.intervalBegan(TimedElement e, Interval i)
          Invoked to indivate that the given interval began.
 void TimegraphAdapter.elementRepeated(TimedElement e, int i, float t)
          Invoked to indicate that the given timed element began a repeat iteration at the specified time.
 void TimegraphAdapter.elementInstanceTimesChanged(TimedElement e, float isBegin)
          Invoked to indicate that the list of instance times for the given timed element has been updated.
abstract  boolean TimedElement.isBefore(TimedElement other)
          Returns whether this timed element comes before the given timed element in document order.
 float TimedDocumentRoot.getDefaultBegin(TimedElement child)
          Returns the default begin time for the given child timed element.
 void TimeContainer.addChild(TimedElement e)
          Adds a TimedElement to this container.
protected  void TimeContainer.setRoot(TimedElement e, TimedDocumentRoot root)
          Recursively sets the TimedDocumentRoot of the given TimedElement and any of its descendants.
 void TimeContainer.removeChild(TimedElement e)
          Removes a TimedElement from this container.
abstract  float TimeContainer.getDefaultBegin(TimedElement child)
          Returns the default begin time for the given child timed element.
 

Constructors in org.apache.batik.anim.timing with parameters of type TimedElement
WallclockTimingSpecifier(TimedElement owner, boolean isBegin, Calendar time)
          Creates a new WallclockTimingSpecifier object.
TimingSpecifierListProducer(TimedElement owner, boolean isBegin)
          Creates a new TimingSpecifierListProducer.
TimingSpecifier(TimedElement owner, boolean isBegin)
          Creates a new TimingSpecifier object.
SyncbaseTimingSpecifier(TimedElement owner, boolean isBegin, float offset, String syncbaseID, boolean syncBegin)
          Creates a new SyncbaseTimingSpecifier object.
RepeatTimingSpecifier(TimedElement owner, boolean isBegin, float offset, String syncbaseID)
          Creates a new RepeatTimingSpecifier object without a repeat iteration.
RepeatTimingSpecifier(TimedElement owner, boolean isBegin, float offset, String syncbaseID, int repeatIteration)
          Creates a new RepeatTimingSpecifier object with a repeat iteration.
OffsetTimingSpecifier(TimedElement owner, boolean isBegin, float offset)
          Creates a new OffsetTimingSpecifier object.
MediaMarkerTimingSpecifier(TimedElement owner, boolean isBegin, String syncbaseID, String markerName)
          Creates a new MediaMarkerTimingSpecifier object.
IndefiniteTimingSpecifier(TimedElement owner, boolean isBegin)
          Creates a new IndefiniteTimingSpecifier object.
EventLikeTimingSpecifier(TimedElement owner, boolean isBegin, float offset)
          Creates a new EventLikeTimingSpecifier object.
EventbaseTimingSpecifier(TimedElement owner, boolean isBegin, float offset, String eventbaseID, String eventName)
          Creates a new EventbaseTimingSpecifier object.
AccesskeyTimingSpecifier(TimedElement owner, boolean isBegin, float offset, char accesskey)
          Creates a new AccesskeyTimingSpecifier object using SVG 1.1 or SMIL syntax.
AccesskeyTimingSpecifier(TimedElement owner, boolean isBegin, float offset, String keyName)
          Creates a new AccesskeyTimingSpecifier object using SVG 1.2 syntax.
 

Uses of TimedElement in org.apache.batik.bridge
 

Subclasses of TimedElement in org.apache.batik.bridge
protected  class SVGAnimationElementBridge.SVGTimedElement
          A TimedElement class for SVG animation elements.
protected  class SVGAnimationEngine.AnimationRoot
          A class for the root time container.
 

Fields in org.apache.batik.bridge declared as TimedElement
protected  TimedElement SVGAnimationElementBridge.timedElement
          The TimedElement object that provides the timing for the animation.
 

Methods in org.apache.batik.bridge that return TimedElement
protected  TimedElement SVGAnimationEngine.AnimationRoot.getTimedElementById(String id)
          Returns the timed element with the given ID.
 TimedElement SVGAnimationElementBridge.getTimedElement()
          Returns the TimedElement for the animation.
protected  TimedElement SVGAnimationElementBridge.createTimedElement()
          Creates a TimedElement for the animation element.
protected  TimedElement SVGAnimationElementBridge.SVGTimedElement.getTimedElementById(String id)
          Returns the timed element with the given ID.
static TimedElement AnimationSupport.getTimedElementById(String id, Node n)
          Returns the timed element with the given ID, using the given node as the context for the lookup.
 

Methods in org.apache.batik.bridge with parameters of type TimedElement
 boolean SVGAnimationEngine.AnimationRoot.isBefore(TimedElement other)
          Returns whether this timed element comes before the given timed element in document order.
protected  void SVGAnimationElementBridge.initializeTimedElement(TimedElement timedElement)
          Initializes the timing attributes of the timed element.
 boolean SVGAnimationElementBridge.SVGTimedElement.isBefore(TimedElement other)
          Returns whether this timed element comes before the given timed element in document order.
 



Copyright © 2009 Apache Software Foundation. All Rights Reserved.