private void processFields(Class currentClass,Tag tag) {
if (currentClass != Object.class) {
for (Field field : currentClass.getDeclaredFields()) {
ATTRIBUTE attributeAnnotation = field
.getAnnotation(ATTRIBUTE.class);
if(attributeAnnotation != null){
Attribute attribute = new Attribute(attributeAnnotation,field);
tag.getAttributes().add(attribute);
}