Update internal packages export in LTTng 2.0 control + update java doc
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / ICreateSessionDialog.java
1 /**********************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs;
13
14 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionGroup;
15
16 /**
17 * <p>
18 * Interface for create session dialog.
19 * </p>
20 *
21 * @author Bernd Hufmann
22 */
23 public interface ICreateSessionDialog {
24
25 // ------------------------------------------------------------------------
26 // Accessors
27 // ------------------------------------------------------------------------
28 /**
29 * @return the session name.
30 */
31 public String getSessionName();
32
33 /**
34 * @return the session path (null for default path)
35 */
36 public String getSessionPath();
37
38 /**
39 * @return true for default location else false
40 */
41 public boolean isDefaultSessionPath();
42
43 /**
44 * Set trace session group.
45 * @param group - the session group
46 */
47 public void setTraceSessionGroup(TraceSessionGroup group);
48
49 // ------------------------------------------------------------------------
50 // Operations
51 // ------------------------------------------------------------------------
52 /**
53 * @return the open return value
54 */
55 int open();
56 }
This page took 0.032273 seconds and 6 git commands to generate.