java.lang.Object
org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeEvent
org.eclipse.tracecompass.tmf.ui.widgets.timegraph.model.TimeLinkEvent
All Implemented Interfaces:
ICoreElementResolver, ICorePropertyCollection, ILinkEvent, ITimeEvent

public class TimeLinkEvent extends TimeEvent implements ILinkEvent
TimeEvent implementation for events that do not involve only one entry, they have a source entry and destination entry
  • Constructor Details

    • TimeLinkEvent

      public TimeLinkEvent(ITimeGraphEntry src, ITimeGraphEntry dst, long time, long duration)
      Standard constructor
      Parameters:
      src - The source entry of this event
      dst - The destination entry of this event
      time - The timestamp of this event
      duration - The duration of the event
    • TimeLinkEvent

      public TimeLinkEvent(ITimeGraphEntry src, ITimeGraphEntry dst, long time, long duration, int value)
      Constructor
      Parameters:
      src - The source entry of this event
      dst - The destination entry of this event
      time - The timestamp of this event
      duration - The duration of this event
      value - The status assigned to the event
    • TimeLinkEvent

      public TimeLinkEvent(ITimeGraphArrow arrowModel, ITimeGraphEntry src, ITimeGraphEntry dst)
      Constructor
      Parameters:
      arrowModel - ITimeGraphArrow that represents this time link event
      src - The source entry of this event
      dst - The destination entry of this event
      Since:
      5.2
  • Method Details