All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.quickapi.handler.entity.QuickDAOEntityHandler Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package cn.schoolwow.quickapi.handler.entity;

import cn.schoolwow.quickapi.domain.APIEntity;
import cn.schoolwow.quickapi.domain.APIField;
import cn.schoolwow.quickdao.annotation.Comment;
import cn.schoolwow.quickdao.annotation.Ignore;

import java.lang.reflect.Field;

public class QuickDAOEntityHandler extends AbstractEntityHandler{
    @Override
    public void handleClass(Class _class, APIEntity apiEntity) {
        Comment comment = (Comment) _class.getAnnotation(Comment.class);
        if(null!=comment){
            apiEntity.description = comment.value();
        }
    }

    @Override
    public void handleField(Field field, APIField apiField) {
        Comment comment = field.getAnnotation(Comment.class);
        if (null!=comment) {
            apiField.description = comment.value();
        }
        if (null != field.getAnnotation(Ignore.class)) {
            apiField.ignore = true;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy