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

com.arsframework.annotation.processor.LeValidateProcessor Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package com.arsframework.annotation.processor;

import javax.annotation.processing.SupportedAnnotationTypes;

import com.sun.tools.javac.code.Symbol;
import com.sun.tools.javac.tree.JCTree;
import com.arsframework.annotation.Le;

/**
 * 参数小于等于校验注解处理器
 *
 * @author yongqiang.wu
 */
@SupportedAnnotationTypes("com.arsframework.annotation.Le")
public class LeValidateProcessor extends AbstractValidateProcessor {

    @Override
    protected JCTree.JCIf buildValidateCondition(Symbol.VarSymbol param) {
        Le le = Validates.lookupAnnotation(param, Le.class);
        JCTree.JCExpression condition = Validates.buildLeExpression(maker, names, param, le.value());
        return Validates.buildValidateException(maker, names, param, condition, le.exception(), le.message(),
                param.name.toString(), le.value());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy