public class MeasureProofreadingActionHandler extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
if(isEnabled() && HandlerUtil.getActiveEditor(event) instanceof MeiseEditor){
new MeasureProofreadingAction(HandlerUtil.getActivePart(event)).run();
}
return null;
}