]
Max Andersen resolved JBIDE-1014.
---------------------------------
Fix Version/s: 2.0.0.CR1
(was: 2.0.1)
Resolution: Done
This is fixed by the code formatter always running on geenrated code now.
Note: that I still belive Dali's valdiation is wrong since a new line after
@EmbeddedId does not mean an annotaiton is not assoicated with the upcoming method or
field.
Generated entities error
------------------------
Key: JBIDE-1014
URL:
http://jira.jboss.com/jira/browse/JBIDE-1014
Project: JBoss Tools
Issue Type: Bug
Components: Seam, UpStream
Affects Versions: 2.0.0.Beta4
Environment: RHDS 1.0.0 beta 2
JDK 1.5.0_12
Reporter: Slava Litskevich
Assigned To: Max Andersen
Priority: Minor
Fix For: 2.0.0.CR1
1. Generate entities for the project using New -> Seam Generate Entities (Reverse
Engineer from database)
Entities are generated. There is an error message in the Problems section: Entity
"Employee" has no Id or EmbeddedId
Employee entity has the following method:
...
public Employee(EmployeeId id) {
this.id = id;
}
@EmbeddedId
@AttributeOverrides( {
@AttributeOverride(name="id", column=@Column(name="ID",
nullable=false) ),
@AttributeOverride(name="name", column=@Column(name="NAME",
nullable=false) ),
@AttributeOverride(name="startDate",
column=@Column(name="START_DATE", length=0) ) } )
@NotNull
public EmployeeId getId() {
return this.id;
}
...
If I remove empty line in getId method annotations error message disappears:
...
@EmbeddedId
@AttributeOverrides( {
@AttributeOverride(name="id", column=@Column(name="ID",
nullable=false) ),
@AttributeOverride(name="name", column=@Column(name="NAME",
nullable=false) ),
@AttributeOverride(name="startDate",
column=@Column(name="START_DATE", length=0) ) } )
@NotNull
public EmployeeId getId() {
return this.id;
}
...
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: