Stop command

small change so command is available as a constant
This commit is contained in:
Douglas Gillespie 2023-05-26 10:27:25 +01:00
parent d841959171
commit 1b5454be91
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>

View File

@ -4,8 +4,10 @@ import PamController.PamController;
public class StopCommand extends ExtCommand {
public static final String commandId = "stop";
public StopCommand() {
super("stop", false);
super(commandId, false);
}
@Override