Files
2009-10-15 13:07:59 +01:00

7 lines
118 B
Java

@interface MyAnnotation {
int value();
String name();
}
@MyAnnotation(value = 0, name = <caret>)
class MyClass {}