rcf.core.framework.source
Annotation Type Author


@Revision(value="$Revision: 1.5 $",
          date="$Date: 2006/12/20 17:21:18 $",
          tag="$Name:  $")
@Retention(value=RUNTIME)
@Target(value={TYPE,FIELD,METHOD,CONSTRUCTOR,PACKAGE})
@Documented
public @interface Author

An annotation specifying the name, e-mail address and personal website of the author of the annotated code. By convention these appear on the package-info.java files for the Project.

TODO: Javadoc review, Seal/Finalize

Version:
$Revision: 1.5 $
Author:
Greg Gibeling
See Also:
Authors

Required Element Summary
 String value
          The name of the author of the annotated element.
 
Optional Element Summary
 String email
          The e-mail address of the author of the annotated element.
 String website
          The personal website of the author of the annotated element.
 

Element Detail

value

public abstract String value
The name of the author of the annotated element.

email

public abstract String email
The e-mail address of the author of the annotated element.

Default:
""

website

public abstract String website
The personal website of the author of the annotated element.

Default:
""