summaryrefslogtreecommitdiffstats
path: root/src/test/misc/ann/RequestForEnhancement.java
blob: 25c612cd8f9e192a572128f9fd463441291271b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package test.misc.ann;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Describes the Request-For-Enhancement(RFE) that led
 * to the presence of the annotated API element.
 */

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface RequestForEnhancement {
	int    id();
	String synopsis();
	String engineer() default "[unassigned]"; 
	String date()    default "[unimplemented]"; 
	String[] arr();
	Class cl();
}