This class is not intended to be extended by clients.
130131132133134135136137
*/ public final String getCategoryId() throws NotDefinedException { try { return command.getCategory().getId(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
143144145146147148149150
*/ public final String getDescription() throws NotDefinedException { try { return command.getDescription(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
192193194195196197198199
*/ public final String getName() throws NotDefinedException { try { return command.getName(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
8687888990919293
*/ public String getDescription() throws NotDefinedException { try { return scheme.getDescription(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
108109110111112113114115
*/ public String getName() throws NotDefinedException { try { return scheme.getName(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }
121122123124125126127128
*/ public String getParentId() throws NotDefinedException { try { return scheme.getParentId(); } catch (final org.eclipse.core.commands.common.NotDefinedException e) { throw new NotDefinedException(e); } }