Added some more JUnit tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / control / dialogs / IEnableEventsDialog.java
CommitLineData
ccc66d01
BH
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 **********************************************************************/
12package org.eclipse.linuxtools.lttng.ui.views.control.dialogs;
13
d132bcc7
BH
14import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TraceDomainComponent;
15import org.eclipse.linuxtools.lttng.ui.views.control.model.impl.TraceProviderGroup;
16
ccc66d01
BH
17/**
18 * <b><u>IEnableKernelEvents</u></b>
19 * <p>
20 * Interface for providing information about Kernel or UST events to be enabled.
21 * </p>
22 */
23public interface IEnableEventsDialog extends IEnableKernelEvents, IEnableUstEvents {
24
25 // ------------------------------------------------------------------------
26 // Accessors
27 // ------------------------------------------------------------------------
28 /**
29 * @return the session the events shall be enabled.
30 */
31 public boolean isKernel();
d132bcc7
BH
32
33 /**
34 * Sets the trace provider group.
35 * @param providerGroup - a trace provider group
36 */
37 public void setTraceProviderGroup(TraceProviderGroup providerGroup);
38
39 /**
40 * Sets the trace domain component.
41 * @param domain - a domain of the events (null if not known)
42 */
43 public void setTraceDomainComponent(TraceDomainComponent domain);
ccc66d01
BH
44
45 // ------------------------------------------------------------------------
46 // Operations
47 // ------------------------------------------------------------------------
48 /**
49 * @return returns the open return value
50 */
51 int open();
52}
This page took 0.027567 seconds and 5 git commands to generate.