X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fui%2Fviews%2Fcontrol%2Fremote%2FCommandShell.java;h=95b50a6d81633f8cb50f8278111d3d9d7b5e14c8;hb=112523422233867587c313bdc26b21bde93931d0;hp=16fb5fadaf90a7b809307b958c7e9db9366f0816;hpb=94d4821e6d09e2fafc652eabaf729cdc8d9a50ff;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java index 16fb5fadaf..95b50a6d81 100644 --- a/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java +++ b/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java @@ -92,10 +92,7 @@ public class CommandShell implements ICommandShell { // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.service.ICommandShell#connect() - */ + @Override public void connect() throws ExecutionException { IShellService shellService = fProxy.getShellService(); @@ -111,10 +108,6 @@ public class CommandShell implements ICommandShell { fIsConnected = true; } - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.service.ICommandShell#disconnect() - */ @Override public void disconnect() { fIsConnected = false; @@ -126,19 +119,11 @@ public class CommandShell implements ICommandShell { } } - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.service.ICommandShell#executeCommand(java.lang.String, org.eclipse.core.runtime.IProgressMonitor) - */ @Override public ICommandResult executeCommand(String command, IProgressMonitor monitor) throws ExecutionException { return executeCommand(command, monitor, true); } - /* - * (non-Javadoc) - * @see org.eclipse.linuxtools.internal.lttng2.ui.views.control.service.ICommandShell#executeCommand(java.lang.String, org.eclipse.core.runtime.IProgressMonitor, boolean) - */ @Override public ICommandResult executeCommand(final String command, final IProgressMonitor monitor, final boolean checkReturnValue) throws ExecutionException { if (fIsConnected) {