public Command newSetGlobal(String identifier, Object object) {
return new SetGlobalCommand(identifier, object);
}
public Command newSetGlobal(String identifier, Object object, boolean out) {
SetGlobalCommand cmd = new SetGlobalCommand(identifier, object);
cmd.setOut(out);
return cmd;
}