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
      void traceMouseClicked​(T trace, int traceIndex, int eventIndex, java.awt.event.MouseEvent e)
      Event that the user has clicked on a trace.
      void traceMouseDoubleClicked​(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 on
        traceIndex - the index of the trace in the list
        eventIndex - the index of the event that has been clicked on or -1 in case not event was below the mouse pointer
        e - the original MouseEvent
      • 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 on
        traceIndex - the index of the trace in the list
        eventIndex - the index of the event that has been clicked on or -1 in case not event was below the mouse pointer
        e - the original MouseEvent