controlEngine.addActionHandler(actionType, actionHandler);
}
private void addActionMethodHandler(Object object, Method method) {
checkControlEngine();
ActionMethod annotation = method.getAnnotation(ActionMethod.class);
ActionId<ActionObject> actionType = ActionId.cm(annotation.value());
ActionMethodHandler actionHandler = new ActionMethodHandler(object, method);
controlEngine.addActionHandler(actionType, actionHandler);
}