Fix author and version information in the GSS classes
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Tue, 12 Jun 2012 18:53:20 +0000 (14:53 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Tue, 12 Jun 2012 18:55:22 +0000 (14:55 -0400)
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
12 files changed:
org.eclipse.linuxtools.lttng2.kernel.core/src/org/eclipse/linuxtools/lttng2/kernel/core/trace/CtfKernelTrace.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/interval/ITmfStateInterval.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/interval/TmfStateInterval.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statesystem/IStateChangeInput.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statesystem/IStateSystemBuilder.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statesystem/IStateSystemQuerier.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statesystem/StateSystemManager.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statevalue/ITmfStateValue.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statevalue/IntegerStateValue.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statevalue/NullStateValue.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statevalue/StringStateValue.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statevalue/TmfStateValue.java

index 10f6b04ca189c69bb705fea52a877dd4b44a678f..eba09db930024782e4b748ac9103547a99c629ff 100644 (file)
@@ -28,8 +28,8 @@ import org.eclipse.linuxtools.tmf.core.statesystem.StateSystemManager;
  * This is the specification of CtfTmfTrace for use with LTTng 2.x kernel
  * traces. It uses the CtfKernelStateInput to generate the state history.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public class CtfKernelTrace extends CtfTmfTrace {
 
index 1367f8b97e275e8a4266fcd496da3d05f81a4693..4998d6dec2c5daf1b346aff97c917b25954e42bb 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
  * Copyright (c) 2012 Ericsson
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Alexandre Montplaisir - Initial API
  ******************************************************************************/
@@ -17,25 +17,25 @@ import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
 /**
  * This is the basic interface for accessing state intervals. See
  * StateInterval.java for a basic implementation.
- * 
+ *
  * A StateInterval is meant to be immutable. All implementing (non-abstract)
  * classes should ideally be marked as 'final'.
- * 
- * @author alexmont
- * 
+ *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public interface ITmfStateInterval {
 
     /**
      * Retrieve the start time of the interval
-     * 
+     *
      * @return the start time of the interval
      */
     public long getStartTime();
 
     /**
      * Retrieve the end time of the interval
-     * 
+     *
      * @return the end time of the interval
      */
     public long getEndTime();
@@ -44,30 +44,30 @@ public interface ITmfStateInterval {
      * In case the "real" end time of the interval is not exactly the same as
      * the end time you want to show in views, you can implement this method to
      * assign a different value that the viewer can use.
-     * 
+     *
      * If not, you can simply have it return the same as getEndTime().
-     * 
+     *
      * @return The end time that views should use
      */
     public long getViewerEndTime();
 
     /**
      * Retrieve the quark of the attribute this state interval refers to
-     * 
+     *
      * @return the quark of the attribute this state interval refers to
      */
     public int getAttribute();
 
     /**
      * Retrieve the state value represented by this interval
-     * 
+     *
      * @return the state value represented by this interval
      */
     public ITmfStateValue getStateValue();
 
     /**
      * Test if this interval intersects another timestamp, inclusively.
-     * 
+     *
      * @param timestamp
      *            The target timestamp
      * @return True if the interval and timestamp intersect, false if they don't
index 0fa22b0734550fbaf98c3c9e59dc0217dec628e4..7f4753558bab3bb4958e80c88f1fa5f9bef0b639 100644 (file)
@@ -19,10 +19,8 @@ import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
  * given time. It is the main object being returned from queries to the state
  * system.
  *
-
- *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public final class TmfStateInterval implements ITmfStateInterval {
 
index 5ed62e8347fd959c7606bad958a38cff4df83199..fba0c4f32101dd58f6fec4b7fb0507f871d8b631 100644 (file)
@@ -22,8 +22,8 @@ import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
  * Usually a state change input, also called "state provider" is the piece of
  * the pipeline which converts trace events to state changes.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public interface IStateChangeInput {
 
index af72f84a89ee6a3ef1d502c14f262efa96e00c80..8d91c3ed9a1cbd99f3de0aece840f3d2d42a3069 100644 (file)
@@ -19,13 +19,13 @@ import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
 
 /**
  * This is the external interface to build or modify an existing state history.
- * 
+ *
  * It extends IStateSystemEnquirer, so you can still use it for reading the
  * history, but it also provides write-access to it with the quark-creating and
  * state-change insertion methods.
- * 
- * @author alexmont
- * 
+ *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public interface IStateSystemBuilder extends IStateSystemQuerier {
 
@@ -36,11 +36,11 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
     /**
      * Basic quark-retrieving method. Pass an attribute in parameter as an array
      * of strings, the matching quark will be returned.
-     * 
+     *
      * This version WILL create new attributes: if the attribute passed in
      * parameter is new in the system, it will be added and its new quark will
      * be returned.
-     * 
+     *
      * @param attribute
      *            Attribute given as its full path in the Attribute Tree
      * @return The quark of the attribute (which either existed or just got
@@ -52,15 +52,15 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * "Relative path" quark-getting method. Instead of specifying a full path,
      * if you know the path is relative to another attribute for which you
      * already have the quark, use this for better performance.
-     * 
+     *
      * This is useful for cases where a lot of modifications or queries will
      * originate from the same branch of the attribute tree : the common part of
      * the path won't have to be re-hashed for every access.
-     * 
+     *
      * This version WILL create new attributes: if the attribute passed in
      * parameter is new in the system, it will be added and its new quark will
      * be returned.
-     * 
+     *
      * @param startingNodeQuark
      *            The quark of the attribute from which 'subPath' originates.
      * @param subPath
@@ -76,15 +76,15 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
     /**
      * Modify a current "ongoing" state (instead of inserting a state change,
      * like modifyAttribute() and others).
-     * 
+     *
      * This can be used to update the value of a previous state change, for
      * example when we get information at the end of the state and not at the
      * beginning. (return values of system calls, etc.)
-     * 
+     *
      * Note that past states can only be modified while they are still in
      * memory, so only the "current state" can be updated. Once they get
      * committed to disk (by inserting a new state change) it becomes too late.
-     * 
+     *
      * @param newValue
      *            The new value that will overwrite the "current" one.
      * @param attributeQuark
@@ -98,7 +98,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
     /**
      * Basic attribute modification method, we simply specify a new value, for a
      * given attribute, effective at the given timestamp.
-     * 
+     *
      * @param t
      *            Timestamp of the state change
      * @param value
@@ -122,7 +122,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * Increment attribute method. Reads the current value of a given integer
      * attribute (this value is right now in the Transient State), and increment
      * it by 1. Useful for statistics.
-     * 
+     *
      * @param t
      *            Timestamp of the state change
      * @param attributeQuark
@@ -145,7 +145,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * Sub-attributes will be created, their base-name will be the position in
      * the stack (1, 2, etc.) and their value will be the state value 'value'
      * that was pushed to this position.
-     * 
+     *
      * @param t
      *            Timestamp of the state change
      * @param value
@@ -170,7 +170,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * stack-attribute. If this brings it back to depth = 0, the attribute is
      * kept with depth = 0. If the value is already 0, or if the attribute
      * doesn't exist, nothing is done.
-     * 
+     *
      * @param t
      *            Timestamp of the state change
      * @param attributeQuark
@@ -191,7 +191,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * Remove attribute method. Similar to the above modify- methods, with value
      * = 0 / null, except we will also "nullify" all the sub-contents of the
      * requested path (a bit like "rm -rf")
-     * 
+     *
      * @param t
      *            Timestamp of the state change
      * @param attributeQuark
@@ -209,7 +209,7 @@ public interface IStateSystemBuilder extends IStateSystemQuerier {
      * we are done reading an off-line trace. First we close the TransientState,
      * commit it to the Provider, mark it as inactive, then we write the
      * Attribute Tree somewhere so we can reopen it later.
-     * 
+     *
      * @param endTime
      *            The requested End Time of the history, since it could be
      *            bigger than the timestamp of the last event or state change we
index e533698e924d10f54de6a113c7a00c75ad3fa900..1e1a68f75947dc444a08f883591878b23f19e8b7 100644 (file)
@@ -23,8 +23,8 @@ import org.eclipse.linuxtools.tmf.core.statevalue.ITmfStateValue;
  * This is the read-only interface to the generic state system. It contains all
  * the read-only quark-getting methods, as well as the history-querying ones.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public interface IStateSystemQuerier {
 
index 1529dd5df743165f89541d9eaada9f5d5766116f..3887553beecb87554fd1ff2bf50f9c70972814cc 100644 (file)
@@ -26,8 +26,8 @@ import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
  * This abstract manager class handles loading or creating state history files
  * for use in TMF's generic state system.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public abstract class StateSystemManager extends TmfComponent {
 
index 5c7b716ad8f5e3ced550b55af0fa7b37b788d2f1..fc3304cda9d5d8d37280af6c89637167a3e2d10e 100644 (file)
@@ -18,8 +18,8 @@ import org.eclipse.linuxtools.tmf.core.exceptions.StateValueTypeException;
 /**
  * This is the interface for using state values and reading their contents.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public interface ITmfStateValue {
 
index 6a49468ff258810c48ad6595d60a7f1bc13621e7..96af6e497c27e64ebb3661c23b49ab4091d88e12 100644 (file)
@@ -2,21 +2,21 @@
  * Copyright (c) 2012 Ericsson
  * Copyright (c) 2010, 2011 École Polytechnique de Montréal
  * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.statevalue;
 
 /**
  * A state value containing a simple integer.
- * 
- * @author alexmont
  *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 final class IntegerStateValue extends TmfStateValue {
 
index e493b28da4e502f82b24b082f0c655b2422839d0..661e7afcc57f2f18c6a22fefd3790c94e5705db4 100644 (file)
@@ -2,12 +2,12 @@
  * Copyright (c) 2012 Ericsson
  * Copyright (c) 2010, 2011 École Polytechnique de Montréal
  * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.statevalue;
@@ -15,11 +15,11 @@ package org.eclipse.linuxtools.tmf.core.statevalue;
 /**
  * A state value that contains no particular value. It is sometimes needed over
  * a "null" reference, since we avoid NPE's this way.
- * 
+ *
  * It can also be read either as a String ("nullValue") or an Integer (-1).
- * 
- * @author alexmont
  *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 final class NullStateValue extends TmfStateValue {
 
index 76804ce42405adbd3784537673a2a853386590b5..4196171f76d868e0f2216b5bc0985c7d51452cce 100644 (file)
@@ -2,21 +2,21 @@
  * Copyright (c) 2012 Ericsson
  * Copyright (c) 2010, 2011 École Polytechnique de Montréal
  * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
- * 
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.statevalue;
 
 /**
  * A state value containing a variable-sized string
- * 
- * @author alexmont
  *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 final class StringStateValue extends TmfStateValue {
 
index 8ca6f352468e3664e497db5ef698731e43882215..cf7175c377bbf80bb0a125b351e6227bd27ae4c5 100644 (file)
@@ -25,8 +25,8 @@ import org.eclipse.linuxtools.tmf.core.exceptions.StateValueTypeException;
  *
  * For now the two available types are either int or String.
  *
- * @author alexmont
- *
+ * @version 1.0
+ * @author Alexandre Montplaisir
  */
 public abstract class TmfStateValue implements ITmfStateValue {
 
This page took 0.033474 seconds and 5 git commands to generate.