Interface GraphMouseListener<V>
-
- Type Parameters:
V
- vertex type
public interface GraphMouseListener<V>
This interface allows users to register listeners to register to receive vertex clicks.- Author:
- danyelf
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
graphClicked(V v, MouseEvent me)
void
graphPressed(V v, MouseEvent me)
void
graphReleased(V v, MouseEvent me)
-
-
-
Method Detail
-
graphClicked
void graphClicked(V v, MouseEvent me)
-
graphPressed
void graphPressed(V v, MouseEvent me)
-
graphReleased
void graphReleased(V v, MouseEvent me)
-
-