mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
8 lines
210 B
Java
8 lines
210 B
Java
|
package avian.testing.annotations;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
public @interface TestEnum {
|
||
|
public Color value();
|
||
|
}
|