[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform] Re: Plugin.xml split editor is not synchronous

Kerem wrote:
When coding a new type of Editor in a plugin or in an RCP application, is New Editor option's behavior settable somewhere?
Is there a way to synchronize all the widgets (texts,combos and even the tables) without writing code for all widget instances in my form in a plugin or in an RCP application?

I think you'd want to do something like that by having the two editors share a model. Then, using the Data Binding framework would make it pretty easy to have multiple views on that model. Your model will have to fire change notification events (like a JavaBean or an EMF model) for Data Binding to work that way.


Hope this helps,
	Eric