gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.ui / src / org / eclipse / linuxtools / internal / lttng2 / control / ui / views / handlers / EnableChannelHandler.java
CommitLineData
bbb3538a 1/**********************************************************************
11252342
AM
2 * Copyright (c) 2012, 2013 Ericsson
3 *
bbb3538a
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:
bbb3538a
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
8e8c0226 12package org.eclipse.linuxtools.internal.lttng2.control.ui.views.handlers;
bbb3538a
BH
13
14import java.util.List;
15
16import org.eclipse.core.commands.ExecutionException;
17import org.eclipse.core.runtime.IProgressMonitor;
8e8c0226
AM
18import org.eclipse.linuxtools.internal.lttng2.control.core.model.TraceEnablement;
19import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl.TraceDomainComponent;
bbb3538a
BH
20
21/**
bbb3538a 22 * <p>
6503ae0f 23 * Command handler implementation to enable one or more trace channels per session and domain.
bbb3538a 24 * </p>
11252342 25 *
dbd4432d 26 * @author Bernd Hufmann
bbb3538a
BH
27 */
28public class EnableChannelHandler extends ChangeChannelStateHandler {
29
30 // ------------------------------------------------------------------------
31 // Accessors
32 // ------------------------------------------------------------------------
11252342 33
bbb3538a
BH
34 @Override
35 protected TraceEnablement getNewState() {
36 return TraceEnablement.ENABLED;
37 }
38
39 // ------------------------------------------------------------------------
40 // Operations
41 // ------------------------------------------------------------------------
11252342 42
bbb3538a
BH
43 @Override
44 protected void changeState(TraceDomainComponent domain, List<String> channelNames, IProgressMonitor monitor) throws ExecutionException {
45 domain.enableChannels(channelNames, null, monitor);
46 }
47}
This page took 0.072378 seconds and 5 git commands to generate.