org.tranche.annotations
Annotation Type Fix


@Retention(value=SOURCE)
public @interface Fix

Leave annotations about bug fixes or fixes of other natures.

Author:
Bryan E. Smith - bryanesmith@gmail.com

Required Element Summary
 java.lang.String author
          The author of the annotation.
 int day
          Day of month.
 int month
          Month starting with 1 (January) and ending with 12 (December).
 java.lang.String problem
          Brief description of the problem.
 java.lang.String solution
          Brief description of the solution or fix.
 int year
          E.g., 2002 for 2002 AD.
 

Element Detail

problem

public abstract java.lang.String problem

Brief description of the problem.

Returns:

solution

public abstract java.lang.String solution

Brief description of the solution or fix.

Returns:

day

public abstract int day

Day of month. Start with 1 for the first (i.e., not zero-indexed). If unknown, use 0.

Returns:

month

public abstract int month

Month starting with 1 (January) and ending with 12 (December). If unknown, use 0.

Returns:

year

public abstract int year

E.g., 2002 for 2002 AD. If unknown, use 0.

Returns:

author

public abstract java.lang.String author

The author of the annotation. If unknown, use "unknown".

Returns:


This code is free for use both commercially and non-commercially as stated in the project's license