Is there a way to access a variable context defined in a component A's fields/methods
from the component B's method?
It might look like this:
| @Name("componentA")
| public class ComponentA{
|
| @Out
| private String fieldX;
|
| }
|
| @Name("ComponentB")
| public class ComponentB{
|
| public void method(){
|
| // set a new value to #{componentA.fieldX}
|
| }
| }
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123298#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...