mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
0681531dc0
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
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();
|
|
}
|
|
|