Interface FieldMouseListener
-
- All Known Implementing Classes:
DecompilerPanel
,ListingPanel
public interface FieldMouseListener
Listener interface for mouse pressed events in the field panel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
buttonPressed(FieldLocation location, Field field, java.awt.event.MouseEvent ev)
Called whenever the mouse button is pressed.
-
-
-
Method Detail
-
buttonPressed
void buttonPressed(FieldLocation location, Field field, java.awt.event.MouseEvent ev)
Called whenever the mouse button is pressed.- Parameters:
location
- the field location of the mouse pointerfield
- the Field object that was clicked onev
- the mouse event that generated this call.
-
-