tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / model / impl / TraceDomainComponent.java
index e93b1dc587a887e3787384c27edc2f06f89fed2a..6db060992fe850defb3fab490782449944cd2f24 100644 (file)
@@ -16,7 +16,6 @@ import java.util.List;
 
 import org.eclipse.core.commands.ExecutionException;
 import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.core.runtime.NullProgressMonitor;
 import org.eclipse.linuxtools.internal.lttng2.core.control.model.IChannelInfo;
 import org.eclipse.linuxtools.internal.lttng2.core.control.model.IDomainInfo;
 import org.eclipse.linuxtools.internal.lttng2.core.control.model.LogLevelType;
@@ -83,10 +82,6 @@ public class TraceDomainComponent extends TraceControlComponent {
         }
     }
 
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceControlComponent#getAdapter(java.lang.Class)
-     */
     @Override
     public Object getAdapter(Class adapter) {
         if (adapter == IPropertySource.class) {
@@ -143,16 +138,6 @@ public class TraceDomainComponent extends TraceControlComponent {
     // Operations
     // ------------------------------------------------------------------------
 
-    /**
-     * Retrieves the session configuration from the node.
-     *
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void getConfigurationFromNode() throws ExecutionException {
-        getConfigurationFromNode(new NullProgressMonitor());
-    }
-
     /**
      * Retrieves the session configuration from the node.
      *
@@ -166,23 +151,6 @@ public class TraceDomainComponent extends TraceControlComponent {
         session.getConfigurationFromNode(monitor);
     }
 
-    /**
-     * Enables channels with given names which are part of this domain. If a
-     * given channel doesn't exists it creates a new channel with the given
-     * parameters (or default values if given parameter is null).
-     *
-     * @param channelNames
-     *            - a list of channel names to enable on this domain
-     * @param info
-     *            - channel information to set for the channel (use null for
-     *            default)
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void enableChannels(List<String> channelNames, IChannelInfo info) throws ExecutionException {
-        enableChannels(channelNames, info, new NullProgressMonitor());
-    }
-
     /**
      * Enables channels with given names which are part of this domain. If a
      * given channel doesn't exists it creates a new channel with the given
@@ -204,19 +172,6 @@ public class TraceDomainComponent extends TraceControlComponent {
                 isKernel(), info, monitor);
     }
 
-    /**
-     * Disables channels with given names which are part of this domain.
-     *
-     * @param channelNames
-     *            - a list of channel names to enable on this domain
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void disableChannels(List<String> channelNames)
-            throws ExecutionException {
-        disableChannels(channelNames, new NullProgressMonitor());
-    }
-
     /**
      * Disables channels with given names which are part of this domain.
      *
@@ -249,16 +204,6 @@ public class TraceDomainComponent extends TraceControlComponent {
                 isKernel(), null, monitor);
     }
 
-    /**
-     * Enables all syscalls (for kernel domain)
-     *
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void enableSyscalls() throws ExecutionException {
-        enableSyscalls(new NullProgressMonitor());
-    }
-
     /**
      * Enables all syscalls (for kernel domain)
      *
@@ -273,23 +218,6 @@ public class TraceDomainComponent extends TraceControlComponent {
         getControlService().enableSyscalls(getSessionName(), null, monitor);
     }
 
-    /**
-     * Enables a dynamic probe (for kernel domain)
-     *
-     * @param eventName
-     *            - event name for probe
-     * @param isFunction
-     *            - true for dynamic function entry/return probe else false
-     * @param probe
-     *            - the actual probe
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void enableProbe(String eventName, boolean isFunction, String probe)
-            throws ExecutionException {
-        enableProbe(eventName, isFunction, probe, new NullProgressMonitor());
-    }
-
     /**
      * Enables a dynamic probe (for kernel domain)
      *
@@ -310,26 +238,6 @@ public class TraceDomainComponent extends TraceControlComponent {
                 isFunction, probe, monitor);
     }
 
-    /**
-     * Enables events using log level.
-     *
-     * @param eventName
-     *            - a event name
-     * @param logLevelType
-     *            - a log level type
-     * @param level
-     *            - a log level
-     * @param filterExpression
-     *            - a filter expression
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void enableLogLevel(String eventName, LogLevelType logLevelType,
-            TraceLogLevel level, String filterExpression) throws ExecutionException {
-        enableLogLevel(eventName, logLevelType, level, filterExpression,
-                new NullProgressMonitor());
-    }
-
     /**
      * Enables events using log level.
      *
@@ -353,18 +261,6 @@ public class TraceDomainComponent extends TraceControlComponent {
                 logLevelType, level, filterExpression, monitor);
     }
 
-    /**
-     * Add contexts to given channels and or events
-     *
-     * @param contexts
-     *            - a list of contexts to add
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void addContexts(List<String> contexts) throws ExecutionException {
-        addContexts(contexts, new NullProgressMonitor());
-    }
-
     /**
      * Add contexts to given channels and or events
      *
@@ -381,16 +277,6 @@ public class TraceDomainComponent extends TraceControlComponent {
                 isKernel(), contexts, monitor);
     }
 
-    /**
-     * Executes calibrate command to quantify LTTng overhead.
-     *
-     * @throws ExecutionException
-     *             If the command fails
-     */
-    public void calibrate() throws ExecutionException {
-        calibrate(new NullProgressMonitor());
-    }
-
     /**
      * Executes calibrate command to quantify LTTng overhead.
      *
This page took 0.025766 seconds and 5 git commands to generate.