Java Code Examples for org.eclipse.core.databinding.UpdateValueStrategy#POLICY_UPDATE

The following examples show how to use org.eclipse.core.databinding.UpdateValueStrategy#POLICY_UPDATE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WizardComponentDataConverters.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
public UpdateValueStrategy<S, D> updatingValueStrategy() {
	UpdateValueStrategy<S, D> strat = new UpdateValueStrategy<>(UpdateValueStrategy.POLICY_UPDATE);
	strat.setConverter(this);
	return strat;
}
 
Example 2
Source File: UpdateStrategyFactory.java    From bonita-studio with GNU General Public License v2.0 4 votes vote down vote up
public static UpdateValueStrategyFactory updateValueStrategy() {
    return new UpdateValueStrategyFactory(UpdateValueStrategy.POLICY_UPDATE);
}
 
Example 3
Source File: UpdateStrategyFactory.java    From bonita-studio with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public static UpdateValueStrategyFactory updateValueStrategy() {
    return new UpdateValueStrategyFactory(UpdateValueStrategy.POLICY_UPDATE);
}
 
Example 4
Source File: UpdateStrategyFactory.java    From bonita-studio with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public static UpdateSetStrategyFactory updateSetStrategy() {
    return new UpdateSetStrategyFactory(UpdateValueStrategy.POLICY_UPDATE);
}