Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java')
-rw-r--r--lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java b/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java
index 1d4f50e514..484c2b8713 100644
--- a/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java
+++ b/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/model/impl/TraceChannelComponent.java
@@ -17,7 +17,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.IEventInfo;
import org.eclipse.linuxtools.internal.lttng2.core.control.model.LogLevelType;
@@ -264,17 +263,6 @@ public class TraceChannelComponent extends TraceControlComponent {
// ------------------------------------------------------------------------
// Operations
// ------------------------------------------------------------------------
- /**
- * Enables a list of events with no additional parameters.
- *
- * @param eventNames
- * - a list of event names to enabled.
- * @throws ExecutionException
- * If the command fails
- */
- public void enableEvents(List<String> eventNames) throws ExecutionException {
- enableEvents(eventNames, new NullProgressMonitor());
- }
/**
* Enables a list of events with no additional parameters.
@@ -309,16 +297,6 @@ public class TraceChannelComponent extends TraceControlComponent {
/**
* 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)
- *
* @param monitor
* - a progress monitor
* @throws ExecutionException
@@ -337,23 +315,6 @@ public class TraceChannelComponent extends TraceControlComponent {
* - 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)
- *
- * @param eventName
- * - event name for probe
- * @param isFunction
- * - true for dynamic function entry/return probe else false
- * @param probe
- * - the actual probe
* @param monitor
* - a progress monitor
* @throws ExecutionException
@@ -375,25 +336,6 @@ public class TraceChannelComponent extends TraceControlComponent {
* - 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.
- *
- * @param eventName
- * - a event name
- * @param logLevelType
- * - a log level type
- * @param level
- * - a log level
- * @param filterExpression
- * - a filter expression
* @param monitor
* - a progress monitor
* @throws ExecutionException
@@ -410,18 +352,6 @@ public class TraceChannelComponent extends TraceControlComponent {
*
* @param eventNames
* - a list of event names to enabled.
- * @throws ExecutionException
- * If the command fails
- */
- public void disableEvent(List<String> eventNames) throws ExecutionException {
- disableEvent(eventNames, new NullProgressMonitor());
- }
-
- /**
- * Enables a list of events with no additional parameters.
- *
- * @param eventNames
- * - a list of event names to enabled.
* @param monitor
* - a progress monitor
* @throws ExecutionException
@@ -438,18 +368,6 @@ public class TraceChannelComponent extends TraceControlComponent {
*
* @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
- *
- * @param contexts
- * - a list of contexts to add
* @param monitor
* - a progress monitor
* @throws ExecutionException

Back to the top