Exit Full View

Feather2 / feather2-javaexamples / src / main / java / WithAnnotations.java

@ExampleAnnotation(greeting = "Hello")
public final class WithAnnotations {

    @ExampleAnnotation( required = true )
    public final int foo = 1;


    @ExampleAnnotation( count = 1 )
    public final boolean bar = true;

    @ExampleAnnotation( greeting = "Bonjour" )
    public final void test() {
    }
}