Hi, all.
I can't seem to find any documentation on how to inject the value of a static property of class A into a property of class B. Specifically, I want to inject the value of HTTPService.RESULT_FORMAT_E4X into an instance of another class using Spring AS. Any ideas?
I tried using factory-method already. That didn't work.
Here's what I tried -
Code:<object id="b" class="B"> <constructor-arg> <object class="mx.rpc.http.HTTPService" factory-method="RESULT_FORMAT_E4X" /> </constructor-arg> </object>
Thanks much.
Jules


Reply With Quote