Remove deprecated and unused methods related to custom traces
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / parsers / custom / CustomXmlTraceDefinition.java
index 9ee123eded25a6b543007e7440a19d0179aa579e..d2b83ec71890803e875b66d4f164edfea44bf4ff 100644 (file)
@@ -125,29 +125,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
         this(CUSTOM_XML_CATEGORY, "", null, new ArrayList<OutputColumn>(), ""); //$NON-NLS-1$ //$NON-NLS-2$
     }
 
-    /**
-     * Full constructor
-     *
-     * @param traceType
-     *            Name of the trace type
-     * @param rootElement
-     *            The top-level XML element
-     * @param outputs
-     *            The list of output columns
-     * @param timeStampOutputFormat
-     *            The timestamp format to use
-     * @deprecated Use
-     *             {@link #CustomXmlTraceDefinition(String, String, CustomXmlInputElement, List, String)}
-     */
-    @Deprecated
-    public CustomXmlTraceDefinition(String traceType, CustomXmlInputElement rootElement,
-            List<OutputColumn> outputs, String timeStampOutputFormat) {
-        this.definitionName = traceType;
-        this.rootInputElement = rootElement;
-        this.outputs = outputs;
-        this.timeStampOutputFormat = timeStampOutputFormat;
-    }
-
     /**
      * Full constructor
      *
@@ -417,19 +394,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
         return new CustomXmlTraceDefinition[0];
     }
 
-    /**
-     * Load the given trace definition.
-     *
-     * @param definitionName
-     *            Name of the XML trace definition to load
-     * @return The loaded trace definition
-     * @deprecated Use {@link #load(String, String)}
-     */
-    @Deprecated
-    public static CustomXmlTraceDefinition load(String definitionName) {
-        return load(CUSTOM_XML_CATEGORY, definitionName);
-    }
-
     /**
      * Load the given trace definition.
      *
@@ -611,18 +575,6 @@ public class CustomXmlTraceDefinition extends CustomTraceDefinition {
         return inputElement;
     }
 
-    /**
-     * Delete a definition from the currently loaded ones.
-     *
-     * @param definitionName
-     *            The name of the definition to delete
-     * @deprecated Use {@link #delete(String, String)}
-     */
-    @Deprecated
-    public static void delete(String definitionName) {
-        delete(CUSTOM_XML_CATEGORY, definitionName);
-    }
-
     /**
      * Delete a definition from the currently loaded ones.
      *
This page took 0.025424 seconds and 5 git commands to generate.