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
Nested Classes Modifier and Type Interface Description static classLayoutListener.ChangeType 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvertexLocationChanged(V v, java.awt.geom.Point2D point, LayoutListener.ChangeType changeType)Called when a vertex location has changed. 
 - 
 
- 
- 
Method Detail
- 
vertexLocationChanged
void vertexLocationChanged(V v, java.awt.geom.Point2D point, LayoutListener.ChangeType changeType)
Called when a vertex location has changed.- Parameters:
 v- the vertexpoint- the new vertex locationchangeType- the type of the change
 
 - 
 
 -