Annotation-Category

2019-05-25  本文已影响0人  许你一枝花
package xu.zhi.hua.testTestNg.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Category {

    /**
     * 分类的名称
     * @return
     */
    public String name() default "";
}

上一篇 下一篇

猜你喜欢

热点阅读