corda/test/avian/testing/annotations/TestComplex.java
Johannes Schindelin 0681531dc0 Test complicated annotation constructs
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2013-11-27 10:39:28 -06:00

15 lines
340 B
Java

package avian.testing.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface TestComplex {
public Test[] arrayValue();
public Class classValue();
public String stringValue();
public char charValue();
public double doubleValue();
}