}
}
final List<Action> actions = new ArrayList<Action>(5);
final List<Method> methods = TypeContentRefecter.getAllMethods(this.clazz);
Action action = null;
// 获取操作标注
for (Method m : methods) {
action = m.getAnnotation(Action.class);
if (action != null) {
actions.add(action);