|
Search this API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface DynamicDecomposition.Listener
This interface is implemented by classes that require to be notified of changes in Partition
s.
Implementations are notified when PartitionCell
s are created, divided, finalized and/or unlocked.
Method Summary | |
---|---|
void |
onCellCreated(PartitionCell createdCell)
Callback after the new given PartitionCell has been created. |
void |
onCellFinalized(PartitionCell finalizedCell)
Callback after the given PartitionCell has been finalized. |
void |
onCellSubdivided(PartitionCell cell,
java.util.List subCells)
Callback after the given PartitionCell has been subdivided into several sub-cells. |
void |
onCellUnlocked(PartitionCell unlockedCell)
Callback after the given PartitionCell has been unlocked. |
Method Detail |
---|
void onCellCreated(PartitionCell createdCell)
PartitionCell
has been created.
createdCell
- the newly created PartitionCell
void onCellSubdivided(PartitionCell cell, java.util.List subCells)
PartitionCell
has been subdivided into several sub-cells.
DynamicDecomposition.Listener
may not modify the list of sub-cells.
cell
- the cell that has been subdividedsubCells
- the sub-cells resulting from the subdivision of the given PartitionCell
void onCellFinalized(PartitionCell finalizedCell)
PartitionCell
has been finalized.
Before the cell may be further subdivided, it has to be unlocked
again.
finalizedCell
- the cell that has been finalizedvoid onCellUnlocked(PartitionCell unlockedCell)
PartitionCell
has been unlocked.
The cell had previously be finalized
but has been unlocked again
and may be subdivided
in the future.
unlockedCell
- the cell that has been unlocked
|
© Copyright 2000-2022, yWorks GmbH. All rights reserved. |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |