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 / handlers / EnableEventHandler.java
CommitLineData
6503ae0f 1/**********************************************************************
11252342
AM
2 * Copyright (c) 2012, 2013 Ericsson
3 *
6503ae0f
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
11252342
AM
8 *
9 * Contributors:
6503ae0f
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
115b4a01 12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.handlers;
6503ae0f
BH
13
14import java.util.List;
15
16import org.eclipse.core.commands.ExecutionException;
17import org.eclipse.core.runtime.IProgressMonitor;
9315aeee 18import org.eclipse.linuxtools.internal.lttng2.core.control.model.TraceEnablement;
115b4a01 19import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceChannelComponent;
6503ae0f
BH
20
21/**
6503ae0f
BH
22 * <p>
23 * Command handler implementation to enable one or more events session, domain and channel.
24 * </p>
11252342 25 *
dbd4432d 26 * @author Bernd Hufmann
6503ae0f
BH
27 */
28public class EnableEventHandler extends ChangeEventStateHandler {
29
30 // ------------------------------------------------------------------------
31 // Accessors
32 // ------------------------------------------------------------------------
11252342 33
6503ae0f
BH
34 @Override
35 protected TraceEnablement getNewState() {
36 return TraceEnablement.ENABLED;
37 }
38
39 // ------------------------------------------------------------------------
40 // Operations
41 // ------------------------------------------------------------------------
11252342 42
6503ae0f 43 @Override
11252342 44 protected void changeState(TraceChannelComponent channel, List<String> eventNames, IProgressMonitor monitor) throws ExecutionException{
498704b3 45 channel.enableEvents(eventNames, monitor);
6503ae0f
BH
46 }
47}
This page took 0.050904 seconds and 5 git commands to generate.