mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
15 lines
340 B
Java
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();
|
||
|
}
|
||
|
|