1 11 12 package org.eclipse.ui.commands; 13 14 45 public interface IKeyConfiguration extends Comparable { 46 47 58 void addKeyConfigurationListener( 59 IKeyConfigurationListener keyConfigurationListener); 60 61 77 String getDescription() throws NotDefinedException; 78 79 85 String getId(); 86 87 103 String getName() throws NotDefinedException; 104 105 121 String getParentId() throws NotDefinedException; 122 123 136 boolean isActive(); 137 138 151 boolean isDefined(); 152 153 164 void removeKeyConfigurationListener( 165 IKeyConfigurationListener keyConfigurationListener); 166 } 167 | Popular Tags |