control: command support for enabling all tracepoints/syscalls
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / service / ILttngControlService.java
index 48c59dc246c370b143eb95d5e980c3bc91970488..3f89b19bcc20fb71bc8c7e1a4ee2bd157b264241 100644 (file)
@@ -12,6 +12,7 @@
  **********************************************************************/
 package org.eclipse.tracecompass.internal.lttng2.control.ui.views.service;
 
+import java.util.Collections;
 import java.util.List;
 
 import org.eclipse.core.commands.ExecutionException;
@@ -36,6 +37,12 @@ import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceLogLevel
 */
 public interface ILttngControlService {
 
+
+    /**
+     * List to enable all events
+     */
+    @NonNull List<String> ALL_EVENTS = Collections.singletonList("*");  //$NON-NLS-1$
+
     /**
      * @return the LTTng version object
      */
This page took 0.024656 seconds and 5 git commands to generate.