Temporary lttng-luna annotation update
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Wed, 7 Aug 2013 19:52:30 +0000 (15:52 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Wed, 7 Aug 2013 19:55:55 +0000 (15:55 -0400)
Change-Id: I271cfce16e2f22e277be95b63e5dc104c7ed6ddf
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/project/model/TraceUtils.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/widgets/timegraph/TimeGraphCombo.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/widgets/timegraph/TimeGraphViewer.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/widgets/timegraph/model/ILinkEvent.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/widgets/timegraph/model/TimeLinkEvent.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/widgets/timegraph/widgets/TimeGraphControl.java

index ba5dce5dc7cd342f240e28f313cbf287437f4c6c..9f8a55ca445993dc3ee6bafdd47bdc41039db641 100644 (file)
@@ -19,7 +19,7 @@ import org.eclipse.ui.PlatformUI;
 /**
  * Utility class for common tmf.ui functionalities
  *
- * @since 2.1
+ * @since 3.0
  */
 public class TraceUtils {
 
index 4fec3338d0fc3d00a6b83e516f35e510d3d22e8a..7626f1647d980da69513e7b6aaa9941a2a76ecb4 100644 (file)
@@ -836,7 +836,7 @@ public class TimeGraphCombo extends Composite {
      * Sets or clears the list of links to display on this combo
      *
      * @param links the links to display in this time graph combo
-     * @since 2.1
+     * @since 3.0
      */
     public void setLinks(List<ILinkEvent> links) {
         fTimeGraphViewer.setLinks(links);
index e085008458518078b7b3fb69862fa03758bd7350..5861e58dae748517392b7226abe2b7c17a7ad3d5 100644 (file)
@@ -164,7 +164,7 @@ public class TimeGraphViewer implements ITimeDataProvider2, SelectionListener {
      *
      * @param links
      *            the links to display in this time graph combo
-     * @since 2.1
+     * @since 3.0
      */
     public void setLinks(List<ILinkEvent> links) {
         if (fTimeGraphCtrl != null) {
index cdb94615146a87632cf37f2eff78aab6ccea7918..ebfb0722a94ac498b5dc44a2d671a29d62019f58 100644 (file)
@@ -16,7 +16,7 @@ package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model;
  * Interface for time event that allows to specify the destination entry of the
  * event
  *
- * @since 2.1
+ * @since 3.0
  */
 public interface ILinkEvent extends ITimeEvent {
 
index 0f2cb97bf9abefc6ce2c539a0cf8aab4f005ac68..b0e39ff20b3ffcb57595625774112c7dac8bfd6f 100644 (file)
@@ -16,7 +16,7 @@ package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model;
  * TimeEvent implementation for events that do not involve only one entry, they
  * have a source entry and destination entry
  *
- * @since 2.1
+ * @since 3.0
  */
 public class TimeLinkEvent extends TimeEvent implements ILinkEvent {
 
index d8fc5a38bfe05265b51becd7611baeb1d14a6775..5fa3616137fe3516061319af6c6a7e9429b61420 100644 (file)
@@ -380,7 +380,7 @@ public class TimeGraphControl extends TimeGraphBaseControl implements FocusListe
      * Refresh the links (arrows) of this widget
      *
      * @param events The link events to refresh
-     * @since 2.1
+     * @since 3.0
      */
     public void refreshArrows(List<ILinkEvent> events) {
         fItemData.refreshArrows(events);
@@ -1396,7 +1396,7 @@ public class TimeGraphControl extends TimeGraphBaseControl implements FocusListe
      *            The width reserved for the names
      * @param gc
      *            Reference to the SWT GC object
-     * @since 2.1
+     * @since 3.0
      */
     public void drawLinks(Rectangle bounds, ITimeDataProvider timeProvider,
             List<ILinkEvent> links, int nameSpace, GC gc) {
@@ -1418,7 +1418,7 @@ public class TimeGraphControl extends TimeGraphBaseControl implements FocusListe
      *            the name space
      * @param gc
      *            Graphics context
-     * @since 2.1
+     * @since 3.0
      */
     protected void drawLink(ILinkEvent event, Rectangle bounds, ITimeDataProvider timeProvider, int nameSpace, GC gc) {
         int srcIndex = fItemData.findItemIndex(event.getEntry());
@@ -1450,7 +1450,7 @@ public class TimeGraphControl extends TimeGraphBaseControl implements FocusListe
      * @param gc
      *            Graphics context
      * @return true if the state was drawn
-     * @since 2.1
+     * @since 3.0
      */
     protected boolean drawArrow(TimeGraphColorScheme colors, ITimeEvent event,
             Rectangle rect, GC gc) {
This page took 0.031188 seconds and 5 git commands to generate.