tmf.ui: Introduce TmfFileDialogFactory
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / dialogs / IGetLoggerInfoDialog.java
1 /**********************************************************************
2 * Copyright (c) 2016 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 * Bruno Roy - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
13
14 import org.eclipse.tracecompass.internal.lttng2.control.core.model.ITraceLogLevel;
15 import org.eclipse.tracecompass.internal.lttng2.control.core.model.LogLevelType;
16 import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceDomainType;
17
18 /**
19 * Interface for a dialog box for collecting information about the loggers to enable.
20 *
21 * @author Bruno Roy
22 */
23 public interface IGetLoggerInfoDialog extends IBaseGetInfoDialog {
24
25 // ------------------------------------------------------------------------
26 // Accessors
27 // ------------------------------------------------------------------------
28
29 /**
30 * @return a log level type (loglevel or loglevel-only)
31 */
32 LogLevelType getLogLevelType();
33
34 /**
35 * @return a log level
36 */
37 ITraceLogLevel getLogLevel();
38
39 /**
40 * Sets the logger domain type
41 * @param domain - the domain type ({@link TraceDomainType})
42 */
43 void setLoggerDomain(TraceDomainType domain);
44 }
This page took 0.033071 seconds and 5 git commands to generate.