Merge branch 'master' into lttng_2_0_control_dev
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui.tests / stubs / org / eclipse / linuxtools / lttng / stubs / service / shells / SessionNotExistsShell.java
CommitLineData
eb1bab5b
BH
1package org.eclipse.linuxtools.lttng.stubs.service.shells;
2
3import org.eclipse.core.commands.ExecutionException;
4import org.eclipse.core.runtime.IProgressMonitor;
5import org.eclipse.linuxtools.lttng.ui.views.control.service.CommandResult;
6import org.eclipse.linuxtools.lttng.ui.views.control.service.ICommandResult;
7
8public class SessionNotExistsShell extends TestCommandShell {
9 @SuppressWarnings("nls")
10 @Override
11 public ICommandResult executeCommand(String command, IProgressMonitor monitor, boolean checkReturnValue) throws ExecutionException {
12 String[] output = new String[2];
13 //Session test not found
14 //Error: Session name not found
15 output[0] = String.valueOf("Session test not found");
16 output[1] = String.valueOf("Error: Session name not found");
17 return new CommandResult(1, output);
18 }
19}
20
This page took 0.054458 seconds and 5 git commands to generate.