Package | Description |
---|---|
com.yworks.yfiles.graph |
Definitions, default implementations, and support classes that represent graph structures and provide facilities for their programmatic modification.
|
Modifier and Type | Method and Description |
---|---|
ICompoundEdit |
UndoEngine.beginCompoundEdit(String undoName,
String redoName)
Begins a compound edit that will use the provided name.
|
default ICompoundEdit |
IGraph.beginEdit(String undoName,
String redoName)
Starts an
ICompoundEdit that records graph changes and custom undo units
in a single compound unit. |
default <T> ICompoundEdit |
IGraph.beginEdit(String undoName,
String redoName,
Iterable<T> items)
Starts an
ICompoundEdit that uses the memento design pattern to
record changes to the items in the given items collection. |
default <T> ICompoundEdit |
IGraph.beginEdit(String undoName,
String redoName,
Iterable<T> items,
IMementoSupportProvider<T> provider)
Starts an
ICompoundEdit that uses the memento design pattern to
record changes to the items in the given items collection. |