show/hide this revision's text 2 added 1 characters in body

With the exception of the

cmd.subString(0,8).trim();

part, this doesn't look too bad to me. You could go with the Map and use reflection, but, depending on how often you add/change commands, this might not buy you much.

You should probably document why you only want the first 8 characters, or maybe change the protocol so it's easier to figure out which part of that string is the command (e.g. put a marker like ':' or ';' after the command key-word).

show/hide this revision's text 1

With the exception of the

cmd.subString(0,8).trim();

part, this doesn't look too bad to me. You could go with the Map and use reflection, but, depending on how often you add/change commands this might not buy you much.

You should probably document why you only want the first 8 characters, or maybe change the protocol so it's easier to figure out which part of that string is the command (e.g. put a marker like ':' or ';' after the command key-word).