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 2025-04-07 09:26:29 +0200