216217218219220221222223224225226
if (commandClass == null) { return; } } // create command Command command; { Constructor<? extends Command> constructor = commandClass.getConstructor(new Class[]{Attributes.class}); command = constructor.newInstance(new Object[]{attributes}); }