Fundamentals of Annotations
Fundamentals of Annotations
easier and more efficient in jdk 5. The main objective to develop the
annotations is to make the development easier. Annotations behaves like the
meta. The literal meaning of meta data is data about data. Java also signifies
this meaning. Annotations are like meta data, means you are free to add your
code and can also apply them to variables, parameters, fields type
declarations, methods and constructors. Metadata is also used to create the
documentation to perform rudimentary compile time checking and even for
tracking down the dependencies in code. XDoclet contains all these features
and is widely used. Annotations provide a means of indicating about
methods, classes, dependencies, incompleteness and also about the references
on other methods and classes respectively. Quoting from Sun's official site,
"It (annotation-based development) lets us avoid writing boilerplate code
under many circumstances by enabling tools to generate it from annotations
in the source code. This leads to a declarative programming style where the
programmer says what should be done and tools emit the code to do it."
Annotation is the way of associating the program elements with
the meta tags so that the compilercan extract program behavior to support the
annotated elements to generate interdependent code when necessary.
Fundamentals of annotations
While going through the annotations you should consider two things. The
first one is the"annotation" itself and second one is the "annotations
types". An annotation is the meta tag, used to give some life to the code you
are using. While annotation type is used to define annotations so that you can
use them while creating your own custom annotations.
An annotation type definition appends an "at" @ sign at the start of the
interface keyword with the annotation name. On the other hand, an
annotation includes the "at" @ sign followed by the annotation type. You can
also add the data within the parenthesis after the annotation name. Lets
illustrate the concept more clearly by using some examples.
Defining an annotation (Annotation type)
public @interface Example {
String showSomething();
}
Annotating the code (Annotation)
Example (showSomething="Hi! How r you")
public void anymethod() {
....
}
Annotation Types: Three types of annotations types are there in java.
• Marker: Like the marker interface, marker annotations does not contain
any elements except the name itself. The example given below clarifies
the concept of marker interface.
Example:
public @interface Example{
}
Usage:
@Example
public void anymethod() {
------------
}
Example:
public @interface Example{
String showSomething();
}
Usage:
@Example ("Hi ! How r you")
public void anymethod(){
--------
}
Example:
public @interface Example{
String showSomething();
int num;
String name;
}
Usage:
@Example (showSomething = "Hi! How r you", num=5,
name="zulfiqar" )
public void anymethod{
// code here
}
Rules defining the Annotation type: Here are some rules that one should
follow while defining and using annotations types
• String
• primitive
• enum
• Class
• array of the above types
• Override
• Depricated
• Suppresswarnings
JDK 5 (also known as Tiger) does not include many built-in annotations but
it facilitates to core java to support annotation features. Now will discuss in
brief each of the above simple annotation types along with examples.
Override annotation: The override annotation ensures that the annotated
method is used to override the method in the super class. If the method
containing this type of annotation does not override the method in the super
class then the compiler will generate a compile time error.
Lets take an example and demonstrate what will happen if the annotated
method does not override the method in the super class.
Example 1:
public class Override_method{
@Override
public String toString(){
return super.toString() +
"Will generate an compile time error.";
}
}
Suppose there is spell mistake in the method name such as the name is
changed from toString to toStrimg. Then on compiling the code will generate
the message like this:
Compiling 1 source file to D:tempNew Folder (2)
TestJavaApplication1buildclasses
D:tempNew Folder (2)TestJavaApplication1srctest
myannotationTest_Override.java:24: method does not override
a method from its superclass
@Override
1 error
BUILD FAILED (total time: 0 seconds)
Deprecated annotation: These types of annotations ensure that the compiler
warns you when you use the deprecated element of the program. The
example given below illustrates this concept.
Example: Lets first create the class containing the deprecated method.
public class Deprecated_method{
@Deprecated
public void showSomething() {
System.out.println("Method has been depricated'");
}
}
Now lets try to invoke this method from inside the other class:
public class Test_Deprication {
public static void main(String arg[]) throws Exception {
new Test_Deprication();
}
public Test_Deprication() {
Deprecated_method d = new Deprecated_method();
d.showSomething();
}
The method showSomething() in the above example is declared as the
deprecated method. That means we can't further use this method any more.
On compiling the class Depricated_method does not generate any error.
While compiling the class Test_Deprication generates the message like this:
Compiling 1 source file to D:tempNew Folder
(2)TestJavaApplication1buildclasses
D:tempNew Folder
(2)TestJavaApplication1srctestmyannotation
Test_Deprication.java:27:
warning: [deprecation] showSomething() in
test.myannotation.Deprecated_method has been deprecated
d.showSomething();
1 warning
The Suppresswarning annotation: These types of annotations ensure that
the compiler will shield the warning message in the annotated elements and
also in all of its sub-elements. Lets take an example:
Suppose you annotate a class to suppress a warning and one of its method to
suppress another warning, then both the warning will be suppressed at the
method level only. Lets demonstrate it by an example:
public class Test_Depricated {
public static void main(String arg[]) throws Exception {
new TestDepricated().showSomething();
}
@SuppressWarnings({"deprecation"})
public void showSomething() {
Deprecation_method d = new Deprecation_method();
d.showSomething();
}
}
This example is suppressing the deprecation warnings that means we can't
see the warnings any more.
Note: Applying annotation at most deeply nested elements is a good idea. It
is better to apply annotations at the method level rather than the class to
annotate a particular method.
Meta-Annotations (Annotation Types): There are four types ofm Meta
annotations (or annotations of annotations) defined by the JDK 5. These are
as follows:
• Target
• Retention
• Documented
• Inherited
Lets demonstrate that how this type of annotations are applied by taking an
example using RetentionPolicy.RUNTIME.
Example:
@Retention(RetentionPolicy.RUNTIME)
public @interface Retention_Demo {
String doRetentionDemo();
}
@Inherited
public @interface ParentObjectDemo {
boolean isInherited() default true;
String showSomething() default "Show anything?";
}
@ParentObjectDemo
public Class ChildObjectDemo {
}
The above example shows that you do not need to define the interface
methods inside the implemented class. The @Inherited tag automatically
inherits the methods for you. Suppose you define the implementing class in
the old-fashioned-java-style then let us see the effect of doing this:
public class ChildObjectDemo implements ParentObjectDemo {
public boolean isInherited() {
return false;
}
public String showSomething() {
return "";
}
public boolean equals(Object obj) {
return false;
}
public int hashCode() {
return 0;
}
public String toString() {
return "";
}
public Class annotationType() {
return null;
}
}
Have you seen the difference? You have to implement all the methods of the
parent interface. You will have to implement the equals(), toString(), and the
hashCode() methods of the Object class and also the annotation type method
of the java.lang.annotation.Annotation class. You will also have to include all
these methods in your class regardless of whether you are implementing all
these methods or not.