Friday, 9 June 2017

Java Tutorial: Annotations in java | Java annotations [Built-In Annotations in Java - @documented] ~ foundjava


Click here to watch in Youtube :
https://www.youtube.com/watch?v=vtIIVubU1Eg&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial: Annotations in java | Java annotations [Built-In Annotations in Java - @documented] 
MyClass.java
import java.lang.annotation.Documented;

@Documented
@interface MyAnnotation
    {

    }

@MyAnnotation
public class MyClass
{
    public static void main(String[] args)
    {
        //javadoc MyClass.java
    }
}
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment