Add capability to enable events with different parameters on session,
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / control / dialogs / IEnableEventsDialog.java
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 **********************************************************************/
12 package org.eclipse.linuxtools.lttng.ui.views.control.dialogs;
13
14 /**
15 * <b><u>IEnableKernelEvents</u></b>
16 * <p>
17 * Interface for providing information about Kernel or UST events to be enabled.
18 * </p>
19 */
20 public interface IEnableEventsDialog extends IEnableKernelEvents, IEnableUstEvents {
21
22 // ------------------------------------------------------------------------
23 // Accessors
24 // ------------------------------------------------------------------------
25 /**
26 * @return the session the events shall be enabled.
27 */
28 public boolean isKernel();
29
30 // ------------------------------------------------------------------------
31 // Operations
32 // ------------------------------------------------------------------------
33 /**
34 * @return returns the open return value
35 */
36 int open();
37 }
This page took 0.031892 seconds and 6 git commands to generate.