Package ghidra.graph.viewer.layout
Interface LayoutListener<V,E>
- Type Parameters:
V
- the vertex typeE
- the edge type
public interface LayoutListener<V,E>
A listener for layout changes.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
vertexLocationChanged
(V v, Point2D point, LayoutListener.ChangeType changeType) Called when a vertex location has changed.
-
Method Details
-
vertexLocationChanged
Called when a vertex location has changed.- Parameters:
v
- the vertexpoint
- the new vertex locationchangeType
- the type of the change
-