Hi I have a java bean A that has a property which is defined as a nother java object B.


class A {
    private B _b;
   
    public A() {}
    public B getB() { return _b ;}
    public void setB( B b) { _b = b ; }
}

How can I implement B so that it can be "transfered" from bean to a form like

<html:text property="b" >


Any suggestion?

-Dan

Reply via email to