|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectcom.sdm.quasar.client.core.dialog.lifecycle.LifeCycleState
Typesafe enum: represents the states that a dialog may be in.
| Field Summary | |
static LifeCycleState |
ACTIVATING
State definition for the technical life cycle of a dialog: The dialog is currently been activating. |
static LifeCycleState |
ACTIVE
In the state active the dialog is visible (although it may be hidden behind other dialogs) and it reacts to events. |
static LifeCycleState |
CREATED
In the state created the dialog has been initialized, but it is not reacting to any events and is not displayed. |
static LifeCycleState |
CREATING
State definition for the technical life cycle of a dialog: The dialog is currently been creatng, has already a dialog instance id assigned, but the constructor hasn't been called yet. |
static LifeCycleState |
DEACTIVATING
State definition for the life cycle of a dialog within the DialogManager:
The dialog is currently deactivating. |
static LifeCycleState |
DISPOSED
In the state a dialog has been disposed. |
static LifeCycleState |
DISPOSING
State definition for the life cycle of a dialog within the DialogManager:
The dialog is currently disposing. |
static LifeCycleState |
PREPARED
In the state prepared the dialog is not visible and does not process user events, but it has a visual representation and it may react to events from other dialogs. |
static LifeCycleState |
PREPARING
State definition for the life cycle of a dialog: The dialog is currently prepearing. |
static LifeCycleState |
RELEASING
State definition for the life cycle of a dialog within the DialogManager: |
| Method Summary | |
boolean |
isActivating()
|
boolean |
isActivatingOrActive()
|
boolean |
isActive()
|
boolean |
isAtLeastCreated()
|
boolean |
isAtLeastPrepared()
|
boolean |
isAtLeastPreparing()
|
boolean |
isCreated()
|
boolean |
isCreating()
|
boolean |
isDeactivating()
|
boolean |
isDisposed()
|
boolean |
isDisposing()
|
boolean |
isPrepared()
|
boolean |
isPreparedOrActive()
|
boolean |
isPreparing()
|
boolean |
isPreparingOrPrepeared()
|
boolean |
isReleasing()
|
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final LifeCycleState CREATING
public static final LifeCycleState CREATED
Valid transitions from this state are LifeCycle.prepare() and
Disposable.dispose().
This state is reachable eighter by creating the dialog or by releasing it.
public static final LifeCycleState PREPARING
public static final LifeCycleState PREPARED
Valid transitions from this state are LifeCycle.activate(),
LifeCycle.release() and
Disposable.dispose().
The dialog is sucessfully prepeared and not (yet) activated. This state is reachable eighter by prepearing the dialog or by deactivating it.
public static final LifeCycleState ACTIVATING
public static final LifeCycleState ACTIVE
Valid transitions from this state are LifeCycle.deactivate() and
Disposable.dispose().
This state is only reachable by activating the dialog.
public static final LifeCycleState DEACTIVATING
DialogManager:
The dialog is currently deactivating.
public static final LifeCycleState RELEASING
DialogManager:
public static final LifeCycleState DISPOSING
DialogManager:
The dialog is currently disposing.
public static final LifeCycleState DISPOSED
There are no valid transitions from this state.
The dialog has been disposed successfully by calling
{@link LifeCycle#dispose()}.
| Method Detail |
public java.lang.String toString()
public boolean isCreated()
CREATED.public boolean isCreating()
CREATING.public boolean isDisposing()
DISPOSING.public boolean isDisposed()
DISPOSED.public boolean isPrepared()
PREPARED.public boolean isPreparing()
PREPARING.public boolean isReleasing()
RELEASING.public boolean isPreparingOrPrepeared()
PREPARED or PREPARING.public boolean isActive()
ACTIVE.public boolean isActivating()
ACTIVATING.public boolean isDeactivating()
DEACTIVATING.public boolean isActivatingOrActive()
ACTIVE or ACTIVATING.public boolean isPreparedOrActive()
PREPARED or ACTIVE.public boolean isAtLeastPrepared()
PREPARED or better.public boolean isAtLeastPreparing()
PREPARED or better.public boolean isAtLeastCreated()
CREATED or better.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||