| author | Pierrick MARIE | 2012-07-06 03:56:06 (EDT) |
|---|---|---|
| committer | Benjamin Cabé | 2012-07-06 03:56:06 (EDT) |
| commit | cc9e96d74090b5524b2372738259a9bc328592e0 (patch) (side-by-side diff) | |
| tree | f92c5e041205f3a9d5ac7b09aedabc0975214a28 | |
| parent | 154451a56d153fae00fd1d241c73bb10d327e869 (diff) | |
| download | org.eclipse.koneki.simulators-cc9e96d74090b5524b2372738259a9bc328592e0.zip org.eclipse.koneki.simulators-cc9e96d74090b5524b2372738259a9bc328592e0.tar.gz org.eclipse.koneki.simulators-cc9e96d74090b5524b2372738259a9bc328592e0.tar.bz2 | |
Add comments into the ConfigurationPage.javamd5
| -rw-r--r-- | omadm/bundles/org.eclipse.koneki.simulators.omadm.editor/src/org/eclipse/koneki/simulators/omadm/editor/internal/configuration/ConfigurationPage.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/omadm/bundles/org.eclipse.koneki.simulators.omadm.editor/src/org/eclipse/koneki/simulators/omadm/editor/internal/configuration/ConfigurationPage.java b/omadm/bundles/org.eclipse.koneki.simulators.omadm.editor/src/org/eclipse/koneki/simulators/omadm/editor/internal/configuration/ConfigurationPage.java index 3728d69..a6384f1 100644 --- a/omadm/bundles/org.eclipse.koneki.simulators.omadm.editor/src/org/eclipse/koneki/simulators/omadm/editor/internal/configuration/ConfigurationPage.java +++ b/omadm/bundles/org.eclipse.koneki.simulators.omadm.editor/src/org/eclipse/koneki/simulators/omadm/editor/internal/configuration/ConfigurationPage.java @@ -77,7 +77,7 @@ public class ConfigurationPage extends AbstractEmfFormPage { device.setAuthentication(auth); } - Node authPref = NodeHelpers.findFirstNode(NodeHelpers.getNode(device.getTree(), "./DMAcc"), "AuthPref"); + Node authPref = NodeHelpers.findFirstNode(NodeHelpers.getNode(device.getTree(), "./DMAcc"), "AuthPref"); //$NON-NLS-1$ //$NON-NLS-2$ if (!authPref.getData().equals(auth.getName())) { authPref.setData(auth.getName()); } @@ -127,6 +127,9 @@ public class ConfigurationPage extends AbstractEmfFormPage { bindingContext.bindValue(WidgetProperties.text(SWT.Modify).observe(this.deviceIdText), EMFEditObservables.observeDetailValue( Realm.getDefault(), editingDomain, deviceObservable, OMADMSimulatorPackage.Literals.DEVICE__DEVICE_ID)); + /* + * TODO improve the binding with the content provider of the combobox + */ // AuthenticationType bindingContext.bindValue(WidgetProperties.selection().observe(this.authenticationType.getCombo()), EMFEditObservables.observeDetailValue( Realm.getDefault(), editingDomain, deviceObservable, OMADMSimulatorPackage.Literals.DEVICE__AUTHENTICATION), targetToModel, |

