tmf.ui: Introduce TmfFileDialogFactory
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / dialogs / IGetEventInfoDialog.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2014 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 * Bernd Hufmann - Updated for support of LTTng Tools 2.1
12 **********************************************************************/
13 package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
14
15 import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceDomainType;
16 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceChannelComponent;
17
18 /**
19 * <p>
20 * Interface for a dialog box for collecting information about the events to enable.
21 * </p>
22 *
23 * @author Bernd Hufmann
24 */
25 public interface IGetEventInfoDialog extends IBaseGetInfoDialog {
26
27 // ------------------------------------------------------------------------
28 // Accessors
29 // ------------------------------------------------------------------------
30
31 /**
32 * @return the channel the events shall be enabled. Null for default channel.
33 */
34 TraceChannelComponent getChannel();
35
36 /**
37 * Sets the domain type.
38 * @param domain domain type ({@link TraceDomainType})
39 */
40 void setDomain(TraceDomainType domain);
41
42 /**
43 * Returns the filter expression.
44 * @return the filter expression or null for no filtering
45 */
46 String getFilterExpression();
47 }
This page took 0.032725 seconds and 5 git commands to generate.