tmf.ui: Introduce TmfFileDialogFactory
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / dialogs / IEnableUstEvents.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 java.util.List;
16
17 /**
18 * Interface for providing information about UST events to be enabled.
19 *
20 * @author Bernd Hufmann
21 */
22 public interface IEnableUstEvents extends IBaseEnableUstEvents {
23
24 // ------------------------------------------------------------------------
25 // Accessors
26 // ------------------------------------------------------------------------
27
28 /**
29 * @return a flag whether the tracepoints shall be configured.
30 */
31 boolean isTracepoints();
32
33 /**
34 * @return a flag whether events using wildcards should be enabled
35 */
36 boolean isWildcard();
37
38 /**
39 * @return a wildcard
40 */
41 String getWildcard();
42
43 /**
44 * @return a filter expression
45 */
46 String getFilterExpression();
47
48 /**
49 * @return a list of events to exclude
50 */
51 List<String> getExcludedEvents();
52
53 }
This page took 0.032244 seconds and 5 git commands to generate.