/** @generated */ public boolean canExecute() { OnMessage container = (OnMessage) getElementToEdit(); if (container.getActivity() != null) { return false; } return true; }
/** @generated */ protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException { Reply newElement = BPELFactory.eINSTANCE.createReply(); OnMessage owner = (OnMessage) getElementToEdit(); owner.setActivity(newElement); doConfigure(newElement, monitor, info); ((CreateElementRequest) getRequest()).setNewElement(newElement); return CommandResult.newOKCommandResult(newElement); }