Package jsl.observers.animation
Interface AnimationMessageHandlerIfc
-
- All Known Implementing Classes:
AnimationTextFileGenerator
public interface AnimationMessageHandlerIfc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappend(double value)Appends the supplied value to the animation messagevoidappend(long value)Appends the supplied value to the animation messagevoidappend(java.lang.String value)Appends the supplied value to the animation messagevoidbeginMessage()Tells the animation generator to begin a new messagevoidcommitMessage()Tells the animation generator to committ the current messagebooleanisStarted()Checks if a message has been started
-
-
-
Method Detail
-
isStarted
boolean isStarted()
Checks if a message has been started- Returns:
-
beginMessage
void beginMessage()
Tells the animation generator to begin a new message
-
commitMessage
void commitMessage()
Tells the animation generator to committ the current message
-
append
void append(double value)
Appends the supplied value to the animation message- Parameters:
value-
-
append
void append(long value)
Appends the supplied value to the animation message- Parameters:
value-
-
append
void append(java.lang.String value)
Appends the supplied value to the animation message- Parameters:
value-
-
-