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 void
append(double value)
Appends the supplied value to the animation messagevoid
append(long value)
Appends the supplied value to the animation messagevoid
append(java.lang.String value)
Appends the supplied value to the animation messagevoid
beginMessage()
Tells the animation generator to begin a new messagevoid
commitMessage()
Tells the animation generator to committ the current messageboolean
isStarted()
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
-
-
-