| com.sun.perseus.demo.PlaySVGImageDemo
All known Subclasses: com.sun.perseus.demo.locationBasedService.LocationBasedService, com.sun.perseus.demo.bouncingballs.BouncingBalls, com.sun.perseus.demo.greetingcard.GreetingCard,
PlaySVGImageDemo | public class PlaySVGImageDemo extends MIDlet implements CommandListener,SVGEventListener(Code) | | Simple demo which plays an SVG animation, using the JSR 226
SVGAnimator class.
|
ERROR_COULD_NOT_LOAD_SVG | final public static String ERROR_COULD_NOT_LOAD_SVG(Code) | | Error message thrown when the SVG resource could not be loaded.
|
KEY_HELP | final public static int KEY_HELP(Code) | | |
KEY_PAUSE | final public static int KEY_PAUSE(Code) | | |
KEY_PLAY | final public static int KEY_PLAY(Code) | | |
KEY_ROTATE | final public static int KEY_ROTATE(Code) | | |
KEY_START_DEMO | final public static int KEY_START_DEMO(Code) | | |
KEY_STOP | final public static int KEY_STOP(Code) | | Key codes used to control the animator's state.
|
SPLASH_MIN_LENGTH | final public static long SPLASH_MIN_LENGTH(Code) | | The minimal amount of time to wait when a splash screen is displayed.
|
STATE_INTERRUPTED | final public static int STATE_INTERRUPTED(Code) | | |
STATE_PAUSED | final public static int STATE_PAUSED(Code) | | |
STATE_PLAYING | final public static int STATE_PLAYING(Code) | | |
STATE_STOPPED | final public static int STATE_STOPPED(Code) | | State constants. These are used to track the animator's state.
|
SVG_NAMESPACE_URI | final public static String SVG_NAMESPACE_URI(Code) | | The SVG Namespace URI.
|
doc | protected Document doc(Code) | | The Document associated with the SVGAnimator
|
splashCanvas | protected Canvas splashCanvas(Code) | | The splash Canvas. May be null.
|
splashImageName | final public String splashImageName(Code) | | The optional splash image to show while the resources for the MIDlet are
loading.
|
state | protected int state(Code) | | One of STATE_STOPPED, STATE_PAUSED, STATE_PLAYING or STATE_INTERRUPTED
|
svg | protected SVGSVGElement svg(Code) | | The root svg element.
|
svgAnimator | protected SVGAnimator svgAnimator(Code) | | The SVGAnimator built from the SVG resource.
|
svgCanvas | protected Canvas svgCanvas(Code) | | The Canvas, managed by the SVGAnimator, where the SVG animation is
displayed.
See Also: #SVGAnimator.getTargetComponent(); |
svgImage | protected SVGImage svgImage(Code) | | The SVGImage associated with the SVGAnimator
|
svgImageName | final public String svgImageName(Code) | | The SVG image played by this MIDlet is stored along the MIDlet's code.
|
PlaySVGImageDemo | public PlaySVGImageDemo(String svgImage, String splashImage, boolean autoStart)(Code) | | |
commandAction | public void commandAction(Command c, Displayable d)(Code) | | |
destroyApp | public void destroyApp(boolean unconditional)(Code) | | |
hideNotify | public void hideNotify()(Code) | | |
keyPressed | public void keyPressed(int keyCode)(Code) | | |
keyReleased | public void keyReleased(int keyCode)(Code) | | |
pauseApp | public void pauseApp()(Code) | | |
pointerPressed | public void pointerPressed(int x, int y)(Code) | | |
pointerReleased | public void pointerReleased(int x, int y)(Code) | | |
showNotify | public void showNotify()(Code) | | |
sizeChanged | public void sizeChanged(int width, int height)(Code) | | |
startApp | public void startApp()(Code) | | |
|
|