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 voidgraphClicked(V v, MouseEvent me)voidgraphPressed(V v, MouseEvent me)voidgraphReleased(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)
-
-