Class RMTransition
- java.lang.Object
- 
- com.inductiveautomation.rm.graphics.RMTransition
 
- 
- All Implemented Interfaces:
- java.lang.Comparable<RMTransition>
 - Direct Known Subclasses:
- RMTransition.Rotate,- RMTransition.Translate
 
 public class RMTransition extends java.lang.Object implements java.lang.Comparable<RMTransition> An animation class that represents a change of an object property from one value to another.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classRMTransition.RotateA transition for rotation.static classRMTransition.RunStatusstatic classRMTransition.TranslateA transition for XY.
 - 
Constructor SummaryConstructors Constructor Description RMTransition(RMKeyValue aKeyVal1, RMKeyValue aKeyVal2)Creates a new transition.RMTransition(java.lang.Object aTarget, java.lang.String aKey, java.lang.Object aValue, int aDuration, boolean isRelative)Creates a new transition.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(RMTransition aTrans)Standard compare implementation.intgetCycleCount()Returns the number of cycles in animation.intgetDelay()Returns the delay of the transition from the time it is told to play to when transition starts.intgetDelayedDuration()Returns the duration plus delay.intgetDuration()Returns the duration of the transition in milliseconds.static java.lang.ObjectgetInterpolation(double aFraction, java.lang.Object aValue1, java.lang.Object aValue2)Returns an invocation by blending this invocation with given invocation using the given fraction of this invocation.RMInterpolatorgetInterpolator()Returns the interpolator.java.lang.StringgetKey()Returns the key.intgetProgress()Returns the progress this transition has made since it was started, in milliseconds.doublegetProgressRatio()Returns the progress ratio for current progress.protected doublegetProgressRatio(int aProgress)Returns the progress ratio for a progress.RMTransition.RunStatusgetRunStatus()Returns the run status of the transition.java.lang.ObjectgetTarget()Returns the target.intgetTotalDuration()Returns the total duration of the animation (delayed duration times cycle count).static RMTransitiongetTransition(java.lang.Object aTarget, java.lang.String aKey)Returns the transition for given target and key.java.lang.ObjectgetValue1()Returns the first value.java.lang.ObjectgetValue2()Returns the second value.booleanisAutoReverse()Returns whether the transition does an auto-reverse.booleanisPaused()Returns whether transition is paused.booleanisRunning()Returns whether transition is running.static booleanisTransitioning(java.lang.Object aTarget, java.lang.String aKey)Returns whether transition is running for given target and key.voidpause()Pauses the animation.voidplay()Tells the transition to start playing.voidplayFrom(int aTime)Tells the transition to start playing at given time of transition duration (in milliseconds).voidplayFromStart()Tells the transition to start playing from the beginning.voidsetAutoReverse(boolean doAutoReverse)Sets whether the transition does an auto-reverse.voidsetCycleCount(int aCount)Sets the number of cycles in animation.voidsetDelay(int aDelay)Sets the delay of the transition from the time it is told to play to when transition starts.voidsetDuration(int aValue)Sets the duration of the transition in milliseconds.voidsetInterpolator(RMInterpolator anInterpolator)Sets the interpolator.protected voidsetProgress(int aProgress)Sets the progress this transition has made since it was started, in milliseconds.voidsetRunStatus(RMTransition.RunStatus aStatus)Sets the run status of the transition.voidsetValue1(java.lang.Object aValue)Sets the first value.voidsetValue2(java.lang.Object aValue)Sets the second value.voidstop()Stops the transition.protected static voidupdateTransitions()Updates transitions.
 
- 
- 
- 
Constructor Detail- 
RMTransitionpublic RMTransition(java.lang.Object aTarget, java.lang.String aKey, java.lang.Object aValue, int aDuration, boolean isRelative)Creates a new transition.
 - 
RMTransitionpublic RMTransition(RMKeyValue aKeyVal1, RMKeyValue aKeyVal2) Creates a new transition.
 
- 
 - 
Method Detail- 
getTargetpublic java.lang.Object getTarget() Returns the target.
 - 
getKeypublic java.lang.String getKey() Returns the key.
 - 
getValue1public java.lang.Object getValue1() Returns the first value.
 - 
setValue1public void setValue1(java.lang.Object aValue) Sets the first value.
 - 
getValue2public java.lang.Object getValue2() Returns the second value.
 - 
setValue2public void setValue2(java.lang.Object aValue) Sets the second value.
 - 
getDurationpublic int getDuration() Returns the duration of the transition in milliseconds.
 - 
setDurationpublic void setDuration(int aValue) Sets the duration of the transition in milliseconds.
 - 
getDelaypublic int getDelay() Returns the delay of the transition from the time it is told to play to when transition starts.
 - 
setDelaypublic void setDelay(int aDelay) Sets the delay of the transition from the time it is told to play to when transition starts.
 - 
isAutoReversepublic boolean isAutoReverse() Returns whether the transition does an auto-reverse.
 - 
setAutoReversepublic void setAutoReverse(boolean doAutoReverse) Sets whether the transition does an auto-reverse.
 - 
getCycleCountpublic int getCycleCount() Returns the number of cycles in animation.
 - 
setCycleCountpublic void setCycleCount(int aCount) Sets the number of cycles in animation.
 - 
getInterpolatorpublic RMInterpolator getInterpolator() Returns the interpolator.
 - 
setInterpolatorpublic void setInterpolator(RMInterpolator anInterpolator) Sets the interpolator.
 - 
getDelayedDurationpublic int getDelayedDuration() Returns the duration plus delay.
 - 
getTotalDurationpublic int getTotalDuration() Returns the total duration of the animation (delayed duration times cycle count).
 - 
isRunningpublic boolean isRunning() Returns whether transition is running.
 - 
isPausedpublic boolean isPaused() Returns whether transition is paused.
 - 
getRunStatuspublic RMTransition.RunStatus getRunStatus() Returns the run status of the transition.
 - 
setRunStatuspublic void setRunStatus(RMTransition.RunStatus aStatus) Sets the run status of the transition.
 - 
getProgresspublic int getProgress() Returns the progress this transition has made since it was started, in milliseconds.
 - 
setProgressprotected void setProgress(int aProgress) Sets the progress this transition has made since it was started, in milliseconds.
 - 
getProgressRatiopublic double getProgressRatio() Returns the progress ratio for current progress.
 - 
getProgressRatioprotected double getProgressRatio(int aProgress) Returns the progress ratio for a progress.
 - 
playpublic void play() Tells the transition to start playing.
 - 
playFromStartpublic void playFromStart() Tells the transition to start playing from the beginning.
 - 
playFrompublic void playFrom(int aTime) Tells the transition to start playing at given time of transition duration (in milliseconds).
 - 
pausepublic void pause() Pauses the animation.
 - 
stoppublic void stop() Stops the transition.
 - 
isTransitioningpublic static boolean isTransitioning(java.lang.Object aTarget, java.lang.String aKey)Returns whether transition is running for given target and key.
 - 
getTransitionpublic static RMTransition getTransition(java.lang.Object aTarget, java.lang.String aKey) Returns the transition for given target and key.
 - 
updateTransitionsprotected static void updateTransitions() Updates transitions.
 - 
compareTopublic int compareTo(RMTransition aTrans) Standard compare implementation.- Specified by:
- compareToin interface- java.lang.Comparable<RMTransition>
 
 - 
getInterpolationpublic static java.lang.Object getInterpolation(double aFraction, java.lang.Object aValue1, java.lang.Object aValue2)Returns an invocation by blending this invocation with given invocation using the given fraction of this invocation.
 
- 
 
-