Processing of multiple commands within one class
@JavaCommandService (1)
public class CommandClass {
[...]
public String myCommand1(String myReadVariable1, String myReadVariable2) {
return myReadVariable1 + myReadVariable2;
}
public int myCommand2(String myReadVariable) {
return myReadVariable.length();
}
}
Last updated 2024-07-05 11:16:52 +0200