blob: f65d7b5b51e239cc692055df5b63c6e5ac9e8224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//version 8:
import java.lang.annotation.*;
@lombok.EqualsAndHashCode
class EqualsAndHashCodeAnnotated {
@Annotated int primitive;
@Annotated Object object;
int @Annotated [] primitiveValues;
int @Annotated [] @Annotated [] morePrimitiveValues;
Integer @Annotated [] objectValues;
Integer @Annotated [] @Annotated [] moreObjectValues;
@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.SOURCE)
@interface Annotated {
}
}
|