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

com.arsframework.annotation.processor.LtValidateProcessor 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.Lt;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy