1 11 12 package org.eclipse.ui.contexts; 13 14 39 public interface IContext extends Comparable { 40 41 50 void addContextListener(IContextListener contextListener); 51 52 58 String getId(); 59 60 71 String getName() throws NotDefinedException; 72 73 85 String getParentId() throws NotDefinedException; 86 87 96 boolean isDefined(); 97 98 107 boolean isEnabled(); 108 109 119 void removeContextListener(IContextListener contextListener); 120 } 121 | Popular Tags |