Package org.refcodes.component
Interface Decomposeable.DecomposeAutomaton
-
- All Superinterfaces:
Decomposeable
- Enclosing interface:
- Decomposeable
public static interface Decomposeable.DecomposeAutomaton extends Decomposeable
TheDecomposeable.DecomposeAutomaton
interface defines those methods related to the decompose life-cycle.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.component.Decomposeable
Decomposeable.DecomposeAutomaton
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isDecomposeable()
Determines whether the component may get decomposed.boolean
isDecomposed()
Determines whether the component is decomposed.-
Methods inherited from interface org.refcodes.component.Decomposeable
decompose
-
-
-
-
Method Detail
-
isDecomposeable
boolean isDecomposeable()
Determines whether the component may get decomposed.- Returns:
- True if
Decomposeable.decompose()
is possible.
-
isDecomposed
boolean isDecomposed()
Determines whether the component is decomposed.- Returns:
- True in case of being decomposed, else false.
-
-