ClassInfo ci = new ClassInfo();
ci.setCls(cls);
ci.setClassType(ClassInfo.ClassType.CLASS);
if(behaviorAnn != null && !behaviorAnn.lookUP().equalsIgnoreCase(AnnotationUtil.DEFAULT_VALUE)) {
ci.setLookUP(behaviorAnn.lookUP());
} else {
ci.setLookUP(cls.getSimpleName());
}
Method[] methods = cls.getDeclaredMethods();
List<ClassInfo.MethodInfo> methodInfos = new ArrayList<ClassInfo.MethodInfo>();