I have been doing some EFM databinding as a part of learning the eclipse modelling framework and one thing that didn't work with window builder was data binding with a TableViewer
in th sense that it was fine for reading the data, but not for when you wanted to edit the data. so I am following Tom Shindl's on how to do it...the trouble is with this piece of code:
tableViewerColumn.setLabelProvider(
new GenericMapCellLabelProvider(
"{0}",
attributeMap
)
);
it says that GenericMapCellLabelProvider
cannot be resovled...but when I use the GenericMapCellLabelProvider
, it can be resolved, could someone help explain why this might be? I don't 'think I am missing any dependencies or packages etc..