Methods Summary |
---|
public void | enter()Called when a state is entered.
|
public void | exit()Called when a state is exited.
|
public java.lang.String | getName()Name of State for debugging purposes.
|
public boolean | processMessage(android.os.Message msg)Called when a message is to be processed by the
state machine.
This routine is never reentered thus no synchronization
is needed as only one processMessage method will ever be
executing within a state machine at any given time. This
does mean that processing by this routine must be completed
as expeditiously as possible as no subsequent messages will
be processed until this routine returns.
|