package com.yinbodotcc2.annotation.metaannotation;
import java.lang.annotation.Repeatable;
@Repeatable(ConcludeArrayAnnotation.class)
public @interface RepeatableAnnotation
{
String date();
String comment();
}
@interface ConcludeArrayAnnotation
{
RepeatableAnnotation[] value();
}
@RepeatableAnnotation(date = "2018-8-7",comment="增加這個類")
@RepeatableAnnotation(date = "2018-8-7",comment="增加了一個測試用例")
class T
{
}