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

com.lx.annotation.Note Maven / Gradle / Ivy

Go to download

使用文档: https://a7fi97h1rc.feishu.cn/docx/X3LRdtLhkoXQ8hxgXDQc2CLOnEg?from=from_copylink

There is a newer version: 1.1
Show newest version
package com.lx.annotation;

import java.lang.annotation.*;

import static java.lang.annotation.ElementType.*;

/**
 * 打包成jar后看不见注释
 *
 * @author ylx
 * @date 2020-06-10
 */
@Target({TYPE,FIELD,METHOD,PARAMETER,CONSTRUCTOR,LOCAL_VARIABLE,ANNOTATION_TYPE,PACKAGE,TYPE_PARAMETER,TYPE_USE})
@Retention(RetentionPolicy.CLASS)
@Inherited
@Documented
public @interface Note {
    @Note("注释信息, 方便打包成jar后查看注释")
    String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy