Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / parsers / custom / CustomXmlTraceDefinition.java
index d2b83ec71890803e875b66d4f164edfea44bf4ff..19263f4ffd2db30e80db0cca2db2eb0f2d60465e 100644 (file)
@@ -55,7 +55,6 @@ import org.xml.sax.SAXParseException;
  * Trace definition for custom XML traces.
  *
  * @author Patrick Tassé
- * @since 3.0
  */
 public class CustomXmlTraceDefinition extends CustomTraceDefinition {
 
@@ -138,7 +137,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
      *            The list of output columns
      * @param timeStampOutputFormat
      *            The timestamp format to use
-     * @since 3.2
      */
     public CustomXmlTraceDefinition(String category, String traceType, CustomXmlInputElement rootElement,
             List<OutputColumn> outputs, String timeStampOutputFormat) {
@@ -286,7 +284,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
      *            if true, the default (built-in) parsers are included
      *
      * @return The loaded trace definitions
-     * @since 3.2
      */
     public static CustomXmlTraceDefinition[] loadAll(boolean includeDefaults) {
         File defaultFile = new File(CUSTOM_XML_TRACE_DEFINITIONS_PATH_NAME);
@@ -357,7 +354,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
      * @param stream
      *            An input stream from which to read the definitions
      * @return The loaded trace definitions
-     * @since 3.2
      */
     public static CustomXmlTraceDefinition[] loadAll(InputStream stream) {
         try {
@@ -402,7 +398,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
      * @param definitionName
      *            Name of the XML trace definition to load
      * @return The loaded trace definition
-     * @since 3.2
      */
     public static CustomXmlTraceDefinition load(String categoryName, String definitionName) {
         try {
@@ -582,7 +577,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
      *            The category of the definition to delete
      * @param definitionName
      *            The name of the definition to delete
-     * @since 3.2
      */
     public static void delete(String categoryName, String definitionName) {
         try {
This page took 0.025412 seconds and 5 git commands to generate.