public interface Decomposeable
The "decompose()" method decompose()
differs from the
"destroy()" method Destroyable.destroy()
in that "destroy()" shuts
down the component in memory, whereas "decompose()" also tears down external
resources such as files or DB schemas. This means that with "decompose()" all
external data will be lost, as with "destroy()" external data will be kept
(in terms that it makes sense for the actual implementation).
Modifier and Type | Interface and Description |
---|---|
static interface |
Decomposeable.DecomposeAutomaton
The
Decomposeable.DecomposeAutomaton interface defines those methods related to
the decompose life-cycle. |
Modifier and Type | Method and Description |
---|---|
void |
decompose()
Decomposes the component.
|
Copyright © 2015. All rights reserved.