Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / dialogs / IEnableUstEvents.java
CommitLineData
498704b3 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2012, 2014 Ericsson
d4514365 3 *
498704b3
BH
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
d4514365
BH
8 *
9 * Contributors:
498704b3 10 * Bernd Hufmann - Initial API and implementation
ba3a9bd2 11 * Bernd Hufmann - Updated for support of LTTng Tools 2.1
498704b3 12 **********************************************************************/
9bc60be7 13package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
498704b3
BH
14
15import java.util.List;
16
9bc60be7
AM
17import org.eclipse.tracecompass.internal.lttng2.control.core.model.LogLevelType;
18import org.eclipse.tracecompass.internal.lttng2.control.core.model.TraceLogLevel;
ccc66d01 19
498704b3 20/**
498704b3 21 * <p>
ccc66d01 22 * Interface for providing information about UST events to be enabled.
498704b3 23 * </p>
d4514365 24 *
dbd4432d 25 * @author Bernd Hufmann
498704b3 26 */
ccc66d01 27public interface IEnableUstEvents {
498704b3
BH
28
29 // ------------------------------------------------------------------------
30 // Accessors
31 // ------------------------------------------------------------------------
d4514365 32
498704b3 33 /**
ccc66d01 34 * @return a flag whether the tracepoints shall be configured.
498704b3 35 */
a6e6f7b4 36 boolean isTracepoints();
d4514365 37
498704b3 38 /**
ccc66d01 39 * @return a flag indicating whether all tracepoints shall be enabled or not.
498704b3 40 */
a6e6f7b4 41 boolean isAllTracePoints();
498704b3
BH
42
43 /**
44 * @return a list of event names to be enabled.
45 */
a6e6f7b4 46 List<String> getEventNames();
498704b3
BH
47
48 /**
ccc66d01 49 * @return a flag whether events using wildcards should be enabled
498704b3 50 */
a6e6f7b4 51 boolean isWildcard();
498704b3
BH
52
53 /**
d4514365 54 * @return a wildcard
498704b3 55 */
a6e6f7b4 56 String getWildcard();
498704b3
BH
57
58 /**
d4514365 59 * @return a flag whether events using log levels should be enabled
498704b3 60 */
a6e6f7b4 61 boolean isLogLevel();
498704b3
BH
62
63 /**
ccc66d01 64 * @return a log level type (loglevel or loglevel-only)
498704b3 65 */
a6e6f7b4 66 LogLevelType getLogLevelType();
d4514365 67
498704b3 68 /**
ccc66d01
BH
69 * @return a log level
70 */
a6e6f7b4 71 TraceLogLevel getLogLevel();
ccc66d01
BH
72
73 /**
74 * @return a event name for the log level enable action
498704b3 75 */
a6e6f7b4 76 String getLogLevelEventName();
d4514365
BH
77
78 /**
79 * @return a filter expression
80 */
a6e6f7b4 81 String getFilterExpression();
d4514365 82
a30e79fe 83}
This page took 0.077496 seconds and 5 git commands to generate.