This class is not intended to be extended by clients.
106107108109110111112113
*/ public String getName() throws NotDefinedException { try { return wrappedContext.getName(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
119120121122123124125126
*/ public String getParentId() throws NotDefinedException { try { return wrappedContext.getParentId(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }