example.mmademo
Interface Utils.Interruptable

All Known Implementing Classes:
SimplePlayerCanvas, SimplePlayerForm
Enclosing class:
Utils

static interface Utils.Interruptable

Interface implemented by Displayable's that want to respond to the MIDlet's startApp() and pauseApp() calls.


Method Summary
 void pauseApp()
          Called in response to a request to pause the MIDlet.
 void resumeApp()
          Called when a MIDlet is asked to resume operations after a call to pauseApp().
 

Method Detail

pauseApp

void pauseApp()
Called in response to a request to pause the MIDlet.


resumeApp

void resumeApp()
Called when a MIDlet is asked to resume operations after a call to pauseApp(). This method is only called after pauseApp(), so it is different from MIDlet's startApp().