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