Interface ProMTraceList.ClickListener<T>
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- ProMTraceList<T>
public static interface ProMTraceList.ClickListener<T> extends java.util.EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtraceMouseClicked(T trace, int traceIndex, int eventIndex, java.awt.event.MouseEvent e)Event that the user has clicked on a trace.voidtraceMouseDoubleClicked(T trace, int traceIndex, int eventIndex, java.awt.event.MouseEvent e)Event that the user has double clicked on a trace.
-
-
-
Method Detail
-
traceMouseDoubleClicked
void traceMouseDoubleClicked(T trace, int traceIndex, int eventIndex, java.awt.event.MouseEvent e)
Event that the user has double clicked on a trace.- Parameters:
trace- the object that has been clicked ontraceIndex- the index of the trace in the listeventIndex- the index of the event that has been clicked on or -1 in case not event was below the mouse pointere- the originalMouseEvent
-
traceMouseClicked
void traceMouseClicked(T trace, int traceIndex, int eventIndex, java.awt.event.MouseEvent e)
Event that the user has clicked on a trace.- Parameters:
trace- the object that has been clicked ontraceIndex- the index of the trace in the listeventIndex- the index of the event that has been clicked on or -1 in case not event was below the mouse pointere- the originalMouseEvent
-
-