Bug 87987

Summary: Support auto-completion for annotation attributes
Product: [Eclipse Project] JDT Reporter: Jens Elkner <elkner>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: RESOLVED WORKSFORME QA Contact:
Severity: enhancement    
Priority: P3    
Version: 3.1   
Target Milestone: 3.1 M7   
Hardware: PC   
OS: Linux   
Whiteboard:

Description Jens Elkner CLA 2005-03-14 16:05:08 EST
Please add ASAP auto-completion for annotation members.

E.g. if one has the following definition, it would be nice, if auto-completion
would offer at least the member names (i.e. name, primaryKey, unique, ...)
to choose from:

@Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME)
public @interface Column
{
   String name() default "";
   boolean primaryKey() default false;
   boolean unique() default false;
   boolean nullable() default true;
   boolean insertable() default true;
   boolean updatable() default true;
   String columnDefinition() default "";
   String secondaryTable() default "";
   int length() default 255;
   int precision() default 0;
   int scale() default 0;
   boolean specified() default true; // For internal use only
}
Comment 1 David Audel CLA 2005-04-29 06:47:31 EDT
This feature works in latest integration build I20040426-1700 (added in a
previous build).

Closed.