1 11 12 package org.eclipse.ui.activities; 13 14 import java.util.Set ; 15 16 36 public interface ICategory extends Comparable { 37 38 48 void addCategoryListener(ICategoryListener categoryListener); 49 50 66 Set getCategoryActivityBindings(); 67 68 73 String getId(); 74 75 86 String getName() throws NotDefinedException; 87 88 99 String getDescription() throws NotDefinedException; 100 101 110 boolean isDefined(); 111 112 122 void removeCategoryListener(ICategoryListener categoryListener); 123 } 124 | Popular Tags |