Method m = ru.getMethod("set" + StringUtil.toUpCaseFirst(n));
if (m != null) {
Annotation[] annotation = f.getAnnotations();
if (annotation != null && annotation.length > 0) {
for (Annotation anno : annotation) {
XmlTag tag = (XmlTag) anno;
String type = tag.type();
String value = tag.value();
boolean canRead = tag.canRead();
if (canRead) {
if (XmlTagType.attriType.equals(type)) {
if ("clazz".equals(n)) {
n = "class";
}