Ranger

Results 1 issues of Ranger

> @interface Hints { Hint[] value(); > } > @Repeatable(Hints.class) > @interface Hint { > String value(); > } > @Hint("hint1") > @Hint("hint2") > class Person { > } >...