17 Zeilen
363 B
Java
17 Zeilen
363 B
Java
package de.steamwar.command;
|
|
|
|
import de.steamwar.command.dto.ExecutionIdentifier;
|
|
import de.steamwar.command.dto.TestSWCommand;
|
|
|
|
public class SimpleCommand extends TestSWCommand {
|
|
|
|
public SimpleCommand() {
|
|
super("simple");
|
|
}
|
|
|
|
@Register
|
|
public void simple(String s) {
|
|
throw new ExecutionIdentifier("RunSimple with noArgs");
|
|
}
|
|
}
|