Package org.refcodes.component
Interface InitializedAccessor
-
- All Known Subinterfaces:
Configurable.ConfigureAutomaton<CTX>,ConfigurableLifeCycleComponent.ConfigurableLifeCycleAutomaton<CTX>,Initializable.InitializeAutomaton,InitializedAccessor.InitializedProperty,LifeCycleComponent.LifeCycleAutomaton
- All Known Implementing Classes:
ConfigurableLifeCycleAutomatonImpl,LifeCycleAutomatonImpl,LifeCycleAutomatonImpl.ManualLifeCycleAutomatonImpl
public interface InitializedAccessorProvides an accessor for a initialized property.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceInitializedAccessor.InitializedMutatorProvides a mutator for a initialized property.static interfaceInitializedAccessor.InitializedPropertyProvides a initialized property.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisInitialized()Retrieves the is-initialized property from the initialized property.
-
-
-
Method Detail
-
isInitialized
boolean isInitialized()
Retrieves the is-initialized property from the initialized property. Determines whether the component is initialized. A component is initialized after being initialized as ofInitializable.initialize()orConfigurable.initialize(Object).- Returns:
- True in case of being initialized (returns the is-initialized property stored by the initialized property).
-
-