Tag: java7 annotation
-
Annotations in Java – an introduction
Annotations were introduced in Java 5. Annotation is also know as metadata. Metadata is a set of data that describes and gives information about other data. Annotations are only metadata and do not(and should not) contain any business logic. For example: In this code, @Override is the annotation. When this annotation is used with the…
