Hi all,
I'd like to know if it is possible to bind an object selected in the Text widget via ContentProposalAdapter to the object in model. I have the following:
offerPresentedByText = new Text(container, SWT.BORDER | SWT.MULTI);
offerPresentedByText.setLayoutData(gridData);
a1 = new ContentProposalAdapter(offerPresentedByText,
new TextContentAdapter(), new ContactContentProposalProvider(
ContactAccess.getInstance().getContacts()), null, null);
a1.setProposalAcceptanceStyle(ContentProposalAdapter.PROPOSAL_REPLACE);
Object of type Contact is selected to the offerPresentedByText Text widget and I need to bind it to another object's property which is available in the class.
Thank you
Martin