本文整理汇总了Java中org.eclipse.core.databinding.Binding.updateTargetToModel方法的典型用法代码示例。如果您正苦于以下问题:Java Binding.updateTargetToModel方法的具体用法?Java Binding.updateTargetToModel怎么用?Java Binding.updateTargetToModel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.core.databinding.Binding
的用法示例。
在下文中一共展示了Binding.updateTargetToModel方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setupAccountEmailDataBinding
import org.eclipse.core.databinding.Binding; //导入方法依赖的package包/类
private void setupAccountEmailDataBinding() {
AccountSelectorObservableValue accountSelectorObservableValue =
new AccountSelectorObservableValue(accountSelector);
UpdateValueStrategy modelToTarget =
new UpdateValueStrategy().setConverter(new Converter(String.class, String.class) {
@Override
public Object convert(Object savedEmail) {
Preconditions.checkArgument(savedEmail instanceof String);
if (accountSelector.isEmailAvailable((String) savedEmail)) {
return savedEmail;
} else if (requireValues && accountSelector.getAccountCount() == 1) {
return accountSelector.getFirstEmail();
} else {
return null;
}
}
});
final IObservableValue accountEmailModel = PojoProperties.value("accountEmail").observe(model);
Binding binding = bindingContext.bindValue(accountSelectorObservableValue, accountEmailModel,
new UpdateValueStrategy(), modelToTarget);
/*
* Trigger an explicit target -> model update for the auto-select-single-account case. When the
* model has a null account but there is exactly 1 login account, then the AccountSelector
* automatically selects that account. That change means the AccountSelector is at odds with the
* model.
*/
binding.updateTargetToModel();
bindingContext.addValidationStatusProvider(new AccountSelectorValidator(
requireValues, accountSelector, accountSelectorObservableValue));
}
开发者ID:GoogleCloudPlatform,项目名称:google-cloud-eclipse,代码行数:33,代码来源:AppEngineDeployPreferencesPanel.java
示例2: initDataBindings
import org.eclipse.core.databinding.Binding; //导入方法依赖的package包/类
protected void initDataBindings() {
DataBindingContext bindingContext = new DataBindingContext();
IObservableMap gdt6302ValuesObserveMap = PojoObservables.observeMap(
gdt6302, "values", Integer.class, String.class);
Text[] control = { txtPatientenKennung, txtPatientNachname,
txtPatientVorname, txtIDReceiver, txtIDSender, txtGewicht,
txtGroesse, txtGuVK, txtMuttersprache, txtOrt, txtStrasse,
txtTitel, txtVersichertenNr, txtTestIdent };
int[] property = {
GDTConstants.FELDKENNUNG_PATIENT_KENNUNG,
GDTConstants.FELDKENNUNG_PATIENT_NAME,
GDTConstants.FELDKENNUNG_PATIENT_VORNAME,
GDTConstants.FELDKENNUNG_GDT_ID_EMPFAENGER,
GDTConstants.FELDKENNUNG_GDT_ID_SENDER,
GDTConstants.FELDKENNUNG_PATIENT_GEWICHT,
GDTConstants.FELDKENNUNG_PATIENT_GROESSE,
GDTConstants.FELDKENNUNG_GERAETE_UND_VERFAHRENSSPEZIFISCHES_KENNFELD,
GDTConstants.FELDKENNUNG_PATIENT_MUTTERSPRACHE,
GDTConstants.FELDKENNUNG_PATIENT_WOHNORT,
GDTConstants.FELDKENNUNG_PATIENT_STRASSE,
GDTConstants.FELDKENNUNG_PATIENT_TITEL,
GDTConstants.FELDKENNUNG_PATIENT_VERSICHERTENNUMMER,
GDTConstants.FELDKENNUNG_TEST_IDENT };
for (int i = 0; i < control.length; i++) {
bindMapValue(control[i], property[i], bindingContext,
gdt6302ValuesObserveMap);
}
IObservableValue widgetValueGeschlecht = ViewerProperties
.singleSelection().observe(comboViewerGeschlecht);
IObservableValue observableMapValueGeschlecht = Observables
.observeMapEntry(gdt6302ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_GESCHLECHT,
String.class);
bindingContext.bindValue(widgetValueGeschlecht,
observableMapValueGeschlecht);
IObservableValue widgetValueVersichertenart = ViewerProperties
.singleSelection().observe(comboViewerVersichertenart);
IObservableValue observableMapValueVersichertenart = Observables
.observeMapEntry(gdt6302ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_VERSICHERTENART,
String.class);
bindingContext.bindValue(widgetValueVersichertenart,
observableMapValueVersichertenart);
IObservableValue widgetValueGeburtstag = new DateTimeObservableValue(
dateTimeBirthday);
IObservableValue observableValueGeburtstag = Observables
.observeMapEntry(gdt6302ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_GEBURTSDATUM,
String.class);
UpdateValueStrategy geburtstagUvs = new UpdateValueStrategy();
geburtstagUvs.setConverter(new DateTimeTargetToModelUVS());
Binding bday = bindingContext.bindValue(widgetValueGeburtstag,
observableValueGeburtstag, geburtstagUvs, null);
bday.updateTargetToModel();
}
示例3: initDataBindings
import org.eclipse.core.databinding.Binding; //导入方法依赖的package包/类
protected void initDataBindings() {
DataBindingContext bindingContext = new DataBindingContext();
IObservableMap gdt6301ValuesObserveMap = PojoObservables.observeMap(
gdt6301, "values", Integer.class, String.class);
Text[] control = { txtPatientenKennung, txtPatientNachname,
txtPatientVorname, txtIDReceiver, txtIDSender, txtGewicht,
txtGroesse, txtMuttersprache, txtOrt, txtStrasse,
txtTitel, txtVersichertenNr };
int[] property = {
GDTConstants.FELDKENNUNG_PATIENT_KENNUNG,
GDTConstants.FELDKENNUNG_PATIENT_NAME,
GDTConstants.FELDKENNUNG_PATIENT_VORNAME,
GDTConstants.FELDKENNUNG_GDT_ID_EMPFAENGER,
GDTConstants.FELDKENNUNG_GDT_ID_SENDER,
GDTConstants.FELDKENNUNG_PATIENT_GEWICHT,
GDTConstants.FELDKENNUNG_PATIENT_GROESSE,
GDTConstants.FELDKENNUNG_PATIENT_MUTTERSPRACHE,
GDTConstants.FELDKENNUNG_PATIENT_WOHNORT,
GDTConstants.FELDKENNUNG_PATIENT_STRASSE,
GDTConstants.FELDKENNUNG_PATIENT_TITEL,
GDTConstants.FELDKENNUNG_PATIENT_VERSICHERTENNUMMER };
for (int i = 0; i < control.length; i++) {
bindMapValue(control[i], property[i], bindingContext,
gdt6301ValuesObserveMap);
}
IObservableValue widgetValueGeschlecht = ViewerProperties
.singleSelection().observe(comboViewerGeschlecht);
IObservableValue observableMapValueGeschlecht = Observables
.observeMapEntry(gdt6301ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_GESCHLECHT,
String.class);
bindingContext.bindValue(widgetValueGeschlecht,
observableMapValueGeschlecht);
IObservableValue widgetValueVersichertenart = ViewerProperties
.singleSelection().observe(comboViewerVersichertenart);
IObservableValue observableMapValueVersichertenart = Observables
.observeMapEntry(gdt6301ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_VERSICHERTENART,
String.class);
bindingContext.bindValue(widgetValueVersichertenart,
observableMapValueVersichertenart);
IObservableValue widgetValueGeburtstag = new DateTimeObservableValue(
dateTimeBirthday);
IObservableValue observableValueGeburtstag = Observables
.observeMapEntry(gdt6301ValuesObserveMap,
GDTConstants.FELDKENNUNG_PATIENT_GEBURTSDATUM,
String.class);
UpdateValueStrategy geburtstagUvs = new UpdateValueStrategy();
geburtstagUvs.setConverter(new DateTimeTargetToModelUVS());
Binding bday = bindingContext.bindValue(widgetValueGeburtstag,
observableValueGeburtstag, geburtstagUvs, null);
bday.updateTargetToModel();
}