lttng: Add snapshot support - LTTng Tools v2.3
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / model / impl / TargetNodeComponent.java
index 926d632e98b2ae90b2396d13a6e45b3e1e4f2b02..964456b8c2a6cc2519b020e7e45f94a8281eb551 100644 (file)
@@ -234,10 +234,10 @@ public class TargetNodeComponent extends TraceControlComponent implements ICommu
     }
 
     /**
-     * Returns if node supports per UID buffers or not
-     * @return <code>true</code> if node supports per UID buffers else <code>false</code>
+     * Returns if node supports configuring buffer type  or not
+     * @return <code>true</code> if node supports buffer type configuration else <code>false</code>
      */
-    public boolean isPerUIDBuffersSupported() {
+    public boolean isBufferTypeConfigSupported() {
         return getControlService().isVersionSupported("2.2.0"); //$NON-NLS-1$
     }
 
@@ -256,6 +256,14 @@ public class TargetNodeComponent extends TraceControlComponent implements ICommu
     public boolean isPeriodicalMetadataFlushSupported() {
         return getControlService().isVersionSupported("2.2.0"); //$NON-NLS-1$
     }
+    /**
+     * Returns if node supports snapshots or not
+     * @return <code>true</code> if it supports snapshots else <code>false</code>
+     *
+     */
+    public boolean isSnapshotSupported() {
+        return getControlService().isVersionSupported("2.3.0"); //$NON-NLS-1$
+    }
 
     // ------------------------------------------------------------------------
     // Operations
This page took 0.023783 seconds and 5 git commands to generate.