7677787980818283848586878889
/** * Runs the command as an EMFStoreCommand within the current thread<br> */ public void run() { final AbstractCommand abstractCommand = this; EMFStoreCommand command = new EMFStoreCommand() { @Override protected void doRun() { abstractCommand.doRun(); } }; command.run(); }