| java.lang.Object javax.microedition.io.file.FileSystemEventHandlerBase
All known Subclasses: javax.microedition.io.file.FileSystemEventHandler,
FileSystemEventHandlerBase | abstract class FileSystemEventHandlerBase implements EventListener(Code) | | File system event handler.
|
FileSystemEventHandlerBase | public FileSystemEventHandlerBase()(Code) | | Default constructor.
Registers current isolate as interested in receiving mount/unmount
events.
|
preprocess | public boolean preprocess(Event event, Event waitingEvent)(Code) | | Preprocess an event that is being posted to the event queue.
This method will get called in the thread that posted the event.
Parameters: event - event being posted Parameters: waitingEvent - previous event of this type waiting in thequeue to be processed true to allow the post to continue,false to not post the event to the queue |
process | public void process(Event event)(Code) | | Process an event.
This method will get called in the event queue processing thread.
Parameters: event - event to process |
setListener | static void setListener(EventListener l)(Code) | | Register the event listener in the event queue.
Security note: access specifier for this method is 'package private'
so only classes from this package can access it.
Parameters: l - EventListener for the MM events. |
|
|