Merge branch 'master' into lttng_2_0_control_dev
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / internal / lttng / ui / views / control / handlers / ConnectHandler.java
CommitLineData
eb1bab5b
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 **********************************************************************/
31a6a4e4 12package org.eclipse.linuxtools.internal.lttng.ui.views.control.handlers;
eb1bab5b
BH
13
14import org.eclipse.core.commands.ExecutionEvent;
15import org.eclipse.core.commands.ExecutionException;
31a6a4e4 16import org.eclipse.linuxtools.internal.lttng.ui.views.control.model.TargetNodeState;
eb1bab5b
BH
17
18/**
19 * <b><u>ConnectHandler</u></b>
20 * <p>
21 * Command handler implementation to connect to a target host.
22 * </p>
23 */
24public class ConnectHandler extends BaseNodeHandler {
25
26 // ------------------------------------------------------------------------
27 // Operations
28 // ------------------------------------------------------------------------
29
30 /*
31 * (non-Javadoc)
31a6a4e4 32 * @see org.eclipse.linuxtools.internal.lttng.ui.views.control.handlers.BaseNodeHandler#execute(org.eclipse.core.commands.ExecutionEvent)
eb1bab5b
BH
33 */
34 @Override
35 public Object execute(ExecutionEvent event) throws ExecutionException {
36 fTargetNode.connect();
37 return null;
38 }
39
40 /*
41 * (non-Javadoc)
31a6a4e4 42 * @see org.eclipse.linuxtools.internal.lttng.ui.views.control.handlers.BaseNodeHandler#isEnabled()
eb1bab5b
BH
43 */
44 @Override
45 public boolean isEnabled() {
46 return (super.isEnabled() && (fTargetNode.getTargetNodeState() == TargetNodeState.DISCONNECTED));
47 }
48}
This page took 0.025727 seconds and 5 git commands to generate.