| Author |
How to access the gettr/setter method of embeded object inside the form bean.
|
prithvi s zankat
Greenhorn
Joined: Jul 18, 2005
Posts: 12
|
|
Hi, I have used object as a member variable in my form bean. I want to access that member object's method using <bean:write/read>. Is is possible? How if it is.
|
 |
Dom Lassy
Ranch Hand
Joined: May 05, 2006
Posts: 181
|
|
<bean:write name="MyForm" property="myObject.myMethod"/> public class MyForm extends ActionForm { MyObject myObject(); public MyObject getMyObject() { return this.myObject; } } public class MyObject { public String getMyMethod() { return "Hello World."; } } The "code" above is an example and hasn't been compiled.
|
 |
 |
|
|
subject: How to access the gettr/setter method of embeded object inside the form bean.
|
|
|