Uses of Class
com.sdm.quasar.client.core.common.ComponentLifeCycle

Packages that use ComponentLifeCycle
com.sdm.quasar.client.core.common   
 

Uses of ComponentLifeCycle in com.sdm.quasar.client.core.common
 

Fields in com.sdm.quasar.client.core.common declared as ComponentLifeCycle
static ComponentLifeCycle ComponentLifeCycle.LIFE_CYCLE_STATE_CREATING
          The component is currently being created.
static ComponentLifeCycle ComponentLifeCycle.LIFE_CYCLE_STATE_CREATED
          The component has been created, but initialization is still pending.
static ComponentLifeCycle ComponentLifeCycle.LIFE_CYCLE_STATE_ACTIVE
          The component has been created and initialized, it is fully functional.
static ComponentLifeCycle ComponentLifeCycle.LIFE_CYCLE_STATE_DISPOSING
          The component is currently being disposed.
static ComponentLifeCycle ComponentLifeCycle.LIFE_CYCLE_STATE_DISPOSED
          The component is disposed.
 

Methods in com.sdm.quasar.client.core.common with parameters of type ComponentLifeCycle
static void ComponentLifeCycle.assertKnownState(ComponentLifeCycle lifeCycleState)
          Tests whether the given state has a known value.
static void ComponentLifeCycle.assertCreating(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently LIFE_CYCLE_STATE_CREATING.
static void ComponentLifeCycle.assertCreated(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently LIFE_CYCLE_STATE_CREATED.
static void ComponentLifeCycle.assertActive(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently LIFE_CYCLE_STATE_ACTIVE.
static void ComponentLifeCycle.assertDisposing(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently LIFE_CYCLE_STATE_DISPOSING.
static void ComponentLifeCycle.assertDisposed(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently LIFE_CYCLE_STATE_DISPOSED.
static void ComponentLifeCycle.assertNotDisposed(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently not LIFE_CYCLE_STATE_DISPOSED.
static void ComponentLifeCycle.assertNotDisposingOrDisposed(ComponentLifeCycle lifeCycleState)
          Checks whether the life cycle state is currently not LIFE_CYCLE_STATE_DISPOSING or LIFE_CYCLE_STATE_DISPOSED.