mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
8 lines
211 B
Java
8 lines
211 B
Java
|
package avian.testing.annotations;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
public @interface TestInteger {
|
||
|
public int value();
|
||
|
}
|