Custom Annotations
Creating your own annotations
Custom Annotations
Code Examples
Custom annotation definition
java
1
2@interface MyAnnotation {
3 String value();
4}
5 Creating your own annotations
Custom annotation definition
1
2@interface MyAnnotation {
3 String value();
4}
5