1 11 package org.eclipse.core.commands; 12 13 14 24 public interface IHandler { 25 26 35 void addHandlerListener(IHandlerListener handlerListener); 36 37 42 public void dispose(); 43 44 55 Object execute(ExecutionEvent event) throws ExecutionException; 56 57 64 public boolean isEnabled(); 65 66 75 public boolean isHandled(); 76 77 87 void removeHandlerListener(IHandlerListener handlerListener); 88 } 89 | Popular Tags |