Class LayoutSizeChange.Event<V>
- java.lang.Object
-
- org.jungrapht.visualization.layout.event.LayoutSizeChange.Event<V>
-
- Enclosing interface:
- LayoutSizeChange
public static class LayoutSizeChange.Event<V> extends Object
the event payload produced by this event model and consumed by its Listener consumers. Contains a reference to the LayoutModel and a boolean flag indicating whether the LayoutModel is currently active or not. The LayoutModel is considered active when a relaxer thread is applying a LayoutAlgorithm to change Vertex positions
-
-
Field Summary
Fields Modifier and Type Field Description int
height
LayoutModel<V>
layoutModel
int
width
-
Constructor Summary
Constructors Constructor Description Event(LayoutModel<V> layoutModel, int width, int height)
-
-
-
Field Detail
-
layoutModel
public final LayoutModel<V> layoutModel
-
width
public final int width
-
height
public final int height
-
-
Constructor Detail
-
Event
public Event(LayoutModel<V> layoutModel, int width, int height)
-
-