Bug 87987 - Support auto-completion for annotation attributes
Summary: Support auto-completion for annotation attributes
Status: RESOLVED WORKSFORME
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: 3.1 M7   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-14 16:05 EST by Jens Elkner CLA
Modified: 2005-04-29 06:47 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.