1 11 12 package org.eclipse.ui.handlers; 13 14 import org.eclipse.core.commands.IHandler; 15 import org.eclipse.core.expressions.IEvaluationContext; 16 import org.eclipse.ui.internal.services.IEvaluationResultCache; 17 18 33 public interface IHandlerActivation extends IEvaluationResultCache, Comparable { 34 35 40 public static final int ROOT_DEPTH = 1; 41 42 50 public void clearActive(); 51 52 57 public String getCommandId(); 58 59 69 public int getDepth(); 70 71 76 public IHandler getHandler(); 77 78 85 public IHandlerService getHandlerService(); 86 87 101 public boolean isActive(IEvaluationContext context); 102 } 103 | Popular Tags |