1 11 package org.eclipse.ui.commands; 12 13 import java.util.Map ; 14 15 29 public interface IHandler { 30 31 40 void addHandlerListener(IHandlerListener handlerListener); 41 42 47 public void dispose(); 48 49 60 Object execute(Map parameterValuesByName) throws ExecutionException; 61 62 74 Map getAttributeValuesByName(); 75 76 86 void removeHandlerListener(IHandlerListener handlerListener); 87 } 88 | Popular Tags |