Community
Participate
Working Groups
Create an EclipseLink JPA project and add this entity. Notice there are 6 validation errors. 2 for the converters being unnamed, 2 for the generators being unnamed and 2 for duplicate generators. We do not need the duplicate generators error if the name is "". This should work the same way converters do. The same issues exists for queries. @Entity @TableGenerator(name="") @SequenceGenerator(name="") @Converter(name="", converterClass=MyConverter.class) @TypeConverter(name="") public class Foo { @Id private int id; }
Created attachment 198049 [details] Proposed Patch
Moving JPA specific bugs to new JPA component in bugzilla.
Patch applied to head.
Verified in Build I-3.4.0-20110826171354 Verified the 2 Duplicate Generator errors do not appear in the problems pane. See the link to view test steps for verification. http://wiki.eclipse.org/Dali_3.1_M1