Thomson wrote:
sebstr wrote:
Hi, i'm having problem creating a 1-1 relation. 1-N works
private javaapplication3.Apa apa ;
public void setApa() {
this.apa = apa;
}
*cough*
Thought about putting "javaapplication3.Apa apa" into the argument section of your setter?
it should read:
public void setApa(javaapplication3.Apa apa) {
this.apa = apa;
}
;)
Holy crap!
When generating a 1-N relation it gets the set-method all correct. So I guess this is a bug in the plug-in...
This must be the most stupid thing I've spend four hours dealing with in my whole life. =)
Thanks for the answer!