Hello all
I am very new to Spring RCP and created a view with a table like this tutorial.
Now i want to update the content thought replacing the datastore i registered in the bean definition.
How can i access the datastore defined in bean definition ?PHP Code:<bean id="MarketView" class="org.springframework.richclient.application.support.DefaultViewDescriptor">
<property name="viewClass" value="simple.MainView" />
<property name="viewProperties">
<map>
<entry key="marketDataStore" value-ref="marketDataStore" />
</map>
</property>
</bean>
<bean id="marketDataStore" class="domain.MarketDataStore" />
thanks and greetings
hetzge




Reply With Quote