X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fui%2Fviews%2Fcontrol%2Fdialogs%2FICreateSessionDialog.java;h=141325fc9911ab95680ce7b2638588ddf3359572;hb=a6e6f7b4c37dc5adce8b2deeaf1d360b1284ad46;hp=ef13775818a07171b79e3e97232479e378457149;hpb=f3b33d40c2e41e7871d9c0aea7b3c0181db94d81;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/ICreateSessionDialog.java b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/ICreateSessionDialog.java index ef13775818..141325fc99 100644 --- a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/ICreateSessionDialog.java +++ b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/dialogs/ICreateSessionDialog.java @@ -1,5 +1,5 @@ /********************************************************************** - * Copyright (c) 2012 Ericsson + * Copyright (c) 2012, 2013 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which @@ -8,6 +8,7 @@ * * Contributors: * Bernd Hufmann - Initial API and implementation + * Bernd Hufmann - Updated for support of LTTng Tools 2.1 **********************************************************************/ package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs; @@ -28,35 +29,35 @@ public interface ICreateSessionDialog { /** * @return the session name. */ - public String getSessionName(); + String getSessionName(); /** * @return the session path (null for default path) */ - public String getSessionPath(); + String getSessionPath(); /** * @return true for default location else false */ - public boolean isDefaultSessionPath(); + boolean isDefaultSessionPath(); /** * Initializes the dialog box. * @param group - the session group */ - public void initialize(TraceSessionGroup group); + void initialize(TraceSessionGroup group); /** * @return true if traces is to be streamed else false. */ - public boolean isStreamedTrace(); + boolean isStreamedTrace(); /** * Get the network URL in case control and data is configured together otherwise null * If it returns a non-null value, getControlUrl() and getDataUrl() have to return null. * @return The network URL or null. */ - public String getNetworkUrl(); + String getNetworkUrl(); /** * Get the control URL in case control and data is configured separately. @@ -65,7 +66,7 @@ public interface ICreateSessionDialog { * * @return The control URL or null. */ - public String getControlUrl(); + String getControlUrl(); /** * Get the data URL in case control and data is configured separately. @@ -74,17 +75,7 @@ public interface ICreateSessionDialog { * * @return The data URL or null. */ - public String getDataUrl(); - - /** - * @return for not activating a consumer for this session - */ - public boolean isNoConsumer(); - - /** - * @return for disabling a consumer for this session - */ - public boolean isDisableConsumer(); + String getDataUrl(); // ------------------------------------------------------------------------ // Operations