Uses of Class
jexer.bits.Animation
-
Packages that use Animation Package Description jexer Jexer - Java Text User Interface libraryjexer.bits Low-level data objects and utility functions that don't warrant their own separate package.jexer.tackboard Pixel-based overlays. -
-
Uses of Animation in jexer
Methods in jexer with parameters of type Animation Modifier and Type Method Description TImage
TWidget. addImage(int x, int y, int width, int height, Animation animation, int left, int top)
Convenience function to add an image to this container/window.TImage
TWidget. addImage(int x, int y, int width, int height, Animation animation, int left, int top, TAction clickAction)
Convenience function to add an image to this container/window.void
TImage. setAnimation(Animation animation)
Set the image space to an animation, and reprocess to make the visible image.Constructors in jexer with parameters of type Animation Constructor Description TImage(TWidget parent, int x, int y, int width, int height, Animation animation, int left, int top)
Public constructor.TImage(TWidget parent, int x, int y, int width, int height, Animation animation, int left, int top, TAction clickAction)
Public constructor. -
Uses of Animation in jexer.bits
Methods in jexer.bits that return Animation Modifier and Type Method Description static Animation
ImageUtils. getAnimation(java.io.File file)
Open an image as an Animation.static Animation
ImageUtils. getAnimation(java.io.InputStream inputStream)
Open an image as an Animation.static Animation
ImageUtils. getAnimation(java.lang.String filename)
Open an image as an Animation.static Animation
ImageUtils. getAnimation(java.net.URL url)
Open an image as an Animation. -
Uses of Animation in jexer.tackboard
Constructors in jexer.tackboard with parameters of type Animation Constructor Description Bitmap(int x, int y, int z, Animation animation, TApplication application)
Public constructor.
-