RequestForEnhancement Interface Reference


Detailed Description

Class describes the definition of a annotation type class

JAnnotationType annotationType = new JAnnotationType("RequestForEnhancement"); annotationType.addElement(new JAnnotationTypeElement("id", JType.Int)); annotationType.addElement(new JAnnotationTypeElement("synopsis", new JType("String"))); JAnnotationTypeElement enginer = new JAnnotationTypeElement("enginer", new JType("String")); enginer.setDefaultString("\"[unassigned]""); annotationType.addElement(enginer); JAnnotationTypeElement date = new JAnnotationTypeElement("date", new JType("String")); date.setDefaultString("\"[unimplemented]""); annotationType.addElement(date);

Outputs

public int id(); String synopsis(); String enginer() default "[unassigned]"; String date() default "[unimplemented]"; }

Author:
Andrew Fawcett

The documentation for this interface was generated from the following file:
 All Classes Namespaces Files Functions Variables Enumerations Properties