| java.lang.Object com.jgoodies.animation.AnimationUtils
AnimationUtils | final public class AnimationUtils (Code) | | Provides some behavior useful in the animation framework,
or to implement custom animation functions and animations.
author: Karsten Lentzsch version: $Revision: 1.1 $ |
Method Summary | |
public static void | invokeOnStop(Animation animation, Runnable runnable) Invokes the given runnable when the specified animation stopped. | public static String[] | splitTexts(String separatedTexts) Returns an array of strings by splitting a given text
into tokens, that are separated by the '|' character. |
invokeOnStop | public static void invokeOnStop(Animation animation, Runnable runnable)(Code) | | Invokes the given runnable when the specified animation stopped.
Parameters: animation - the animation that is observed Parameters: runnable - the runnable that will be executed on animation stop |
splitTexts | public static String[] splitTexts(String separatedTexts)(Code) | | Returns an array of strings by splitting a given text
into tokens, that are separated by the '|' character.
Parameters: separatedTexts - a string that encodes a bunch of textsseparated by a | character an array of the separated textsString.split(java.lang.String) |
|
|