| @Name("componentA")
| public class ComponentA{
|
| private String fieldX;
|
| public void setFieldX(String x) {
| this.fieldX = x;
| }
| }
|
| @Name("ComponentB")
| public class ComponentB{
|
| private ComponentA a;
|
| @In
| public void setComponentA(ComponentA a) {
| this.a = a;
| }
|
| public void method(){
| a.setFieldX(12);
| }
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123912#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...