Package ghidra.graph.viewer.vertex
Interface VertexClickListener<V extends VisualVertex,E extends VisualEdge<V>>
-
- Type Parameters:
V
- the vertex typeE
- the edge type
public interface VertexClickListener<V extends VisualVertex,E extends VisualEdge<V>>
A listener that allows clients to be notified of vertex clicks. Normal mouse processing is handled by theVisualGraphMousePlugin
class. This is a convenience method so that clients do not have to deal with the mouse plugin.- See Also:
VertexFocusListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
vertexDoubleClicked(V v, VertexMouseInfo<V,E> mouseInfo)
Called when a vertex is double-clicked
-
-
-
Method Detail
-
vertexDoubleClicked
boolean vertexDoubleClicked(V v, VertexMouseInfo<V,E> mouseInfo)
Called when a vertex is double-clicked- Parameters:
v
- the clicked vertexmouseInfo
- the info object that contains mouse information for the graph and the low-level vertex's clicked component- Returns:
- true if this call wants to stop all further mouse event processing
-
-