NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
kingsz1
Joined: 09 Jul 2009 Posts: 1
|
Posted: Thu Jul 09, 2009 3:29 am Post subject: creating entity class from database, somthing missing? |
|
|
Hello all. I am new in using NB.
I had created a entity bean from database, the NB generated these codes:
| Code: |
public Uuser() {
}
public Uuser(Integer id) {
this.id = id;
}
public Uuser(Integer id, String uemail, String bulaid, String bulaword, String uAlias, String uuuid) {
this.id = id;
this.uemail = uemail;
this.bulaid = bulaid;
this.bulaword = bulaword;
this.uAlias = uAlias;
this.uuuid = uuuid;
}
public Integer getId() {
return id;
}
...
|
It came with all table fields. Today I install NetBeans 6.7 and try again, here was the code generating:
| Code: |
public Uuser() {
}
public Uuser(Integer id) {
this.id = id;
}
public Integer getId() {
return id;
}
...
|
Did I do something wrong? How i can let NB generate the code (red color portion)?
Thank for any help. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|