This class is not intended to be extended by clients.
136137138139140141142143144145
return id; } public String getName() throws NotDefinedException { if (!defined) { throw new NotDefinedException(); } return name; }
238239240241242243244245246247
/* (non-Javadoc) * @see org.eclipse.ui.activities.ICategory#getDescription() */ public String getDescription() throws NotDefinedException { if (!defined) { throw new NotDefinedException(); } return description; }
171172173174175176177178179180
339340341342343344345346347348
/* (non-Javadoc) * @see org.eclipse.ui.activities.IActivity#getDescription() */ public String getDescription() throws NotDefinedException { if (!defined) { throw new NotDefinedException(); } return description; }