1 11 12 package org.eclipse.ui.activities; 13 14 import java.util.Set ; 15 16 41 public interface IActivity extends Comparable { 42 43 53 void addActivityListener(IActivityListener activityListener); 54 55 72 Set getActivityRequirementBindings(); 73 74 90 Set getActivityPatternBindings(); 91 92 97 String getId(); 98 99 110 String getName() throws NotDefinedException; 111 112 123 String getDescription() throws NotDefinedException; 124 125 135 boolean isDefined(); 136 137 146 boolean isEnabled(); 147 148 156 boolean isDefaultEnabled() throws NotDefinedException; 157 158 168 void removeActivityListener(IActivityListener activityListener); 169 } 170 | Popular Tags |