hi,
i have a problem writing an nested tag
i have:
in outer class
-------------------------------------------
public Inner createInner(){
inner = new Inner(project);
return new Inner();
}
-------------------------------------------
in inner class:
-------------------------------------------
public Inner(Project p) {
setProject(p);
}
public void setIn(String val){
this.val=val;
}
-------------------------------------------
when i try to read stuf from the inner class in the outer class (inner.val)
it is null
what am i missing here??
thanks
tibi
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>