Class TmfSelectionRangeUpdatedSignal
java.lang.Object
org.eclipse.tracecompass.tmf.core.signal.TmfSignal
org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal
A new time range selection has been made.
This is the selected time or time range. A single-timestamp selection is
represented by a range where the start time is equal to the end time.
To update the visible (zoom) range instead, use
TmfWindowRangeUpdatedSignal.- Since:
- 1.0
- Author:
- Francois Chouinard
-
Constructor Summary
ConstructorsConstructorDescriptionTmfSelectionRangeUpdatedSignal(@Nullable Object source, ITmfTimestamp ts) Constructor for a single timestamp selection (start and end times will be the same).TmfSelectionRangeUpdatedSignal(@Nullable Object source, ITmfTimestamp begin, ITmfTimestamp end) Constructor for a time range selection.TmfSelectionRangeUpdatedSignal(@Nullable Object source, ITmfTimestamp begin, ITmfTimestamp end, @Nullable ITmfTrace trace) Constructor for a time range selection. -
Method Summary
Methods inherited from class org.eclipse.tracecompass.tmf.core.signal.TmfSignal
getReference, getSource, setReference
-
Constructor Details
-
TmfSelectionRangeUpdatedSignal
Constructor for a single timestamp selection (start and end times will be the same).- Parameters:
source- Object sending this signalts- Timestamp of selection
-
TmfSelectionRangeUpdatedSignal
public TmfSelectionRangeUpdatedSignal(@Nullable Object source, ITmfTimestamp begin, ITmfTimestamp end) Constructor for a time range selection.- Parameters:
source- Object sending this signalbegin- Timestamp of begin of selection rangeend- Timestamp of end of selection range
-
TmfSelectionRangeUpdatedSignal
public TmfSelectionRangeUpdatedSignal(@Nullable Object source, ITmfTimestamp begin, ITmfTimestamp end, @Nullable ITmfTrace trace) Constructor for a time range selection.- Parameters:
source- Object sending this signalbegin- Timestamp of begin of selection rangeend- Timestamp of end of selection rangetrace- The trace that triggered the selection, or null- Since:
- 3.2
-
-
Method Details