Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 336048 - [EMF Databinding] allow emf data model service to determine model type
Summary: [EMF Databinding] allow emf data model service to determine model type
Status: NEW
Alias: None
Product: XWT
Classification: Technology
Component: Core (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-02-02 05:35 EST by Erdal Karaca CLA
Modified: 2013-01-24 15:32 EST (History)
0 users

See Also:


Attachments
Implemented a heuristic method for model type determination (2.24 KB, patch)
2011-02-02 05:38 EST, Erdal Karaca CLA
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Erdal Karaca CLA 2011-02-02 05:35:35 EST
I have a data binding as follows:

<TableViewerColumn width="150" text="Result Data"
							bindingPath="result" itemText="{Binding path=(a:Result.data)}" />
							
The Model is as follows:

ResultObject
+ result : Result (containment reference)

Result
+ data : double

As org.eclipse.e4.xwt.emf.EMFDataModelService.loadModelType(String) is not implemented, this binding will fail.
Comment 1 Erdal Karaca CLA 2011-02-02 05:38:04 EST
Created attachment 188121 [details]
Implemented a heuristic method for model type determination