1 11 12 package org.eclipse.ui.commands; 13 14 48 public interface ICategory extends Comparable { 49 50 61 void addCategoryListener(ICategoryListener categoryListener); 62 63 78 String getDescription() throws NotDefinedException; 79 80 85 String getId(); 86 87 102 String getName() throws NotDefinedException; 103 104 117 boolean isDefined(); 118 119 130 void removeCategoryListener(ICategoryListener categoryListener); 131 } 132 | Popular Tags |