JVM Languages
janotate.txt
Associated article: Java Annotations and apt
Tags: JVM Languages
Published source code accompanying the article by J. Benton in which he examines Java 5.0's "annotations" that integrate metadata technology directly into the language. Also see JANOTATE.ZIP.
Java Annotations
by J. Benton
Example 1:
/** Deprecating a method using the annotation. @author J. Benton */
public class DeprecateExample {
// if you use this method, you'll get a warning that it is deprecated.
@Deprecated
public void ohNoIAmDeprecated() {
System.out.println("I ...


