Search in sources :

Example 1 with BehaviorDependentDispatcher

use of org.linkki.core.binding.dispatcher.BehaviorDependentDispatcher in project linkki by linkki-framework.

the class PropertyDispatcherFactory method createDispatcherChain.

public PropertyDispatcher createDispatcherChain(Object pmo, BindingDescriptor bindingDescriptor, PropertyBehaviorProvider behaviorProvider) {
    requireNonNull(pmo, "pmo must not be null");
    requireNonNull(bindingDescriptor, "bindingDescriptor must not be null");
    requireNonNull(behaviorProvider, "behaviorProvider must not be null");
    // @formatter:off
    String modelPropertyName = bindingDescriptor.getModelPropertyName();
    String modelObjectName = bindingDescriptor.getModelObjectName();
    String pmoPropertyName = bindingDescriptor.getPmoPropertyName();
    ExceptionPropertyDispatcher exceptionDispatcher = newExceptionDispatcher(pmo, modelObjectName, pmoPropertyName);
    ReflectionPropertyDispatcher reflectionDispatcher = newReflectionDispatcher(pmo, pmoPropertyName, modelObjectName, modelPropertyName, exceptionDispatcher);
    StaticValueDispatcher bindingAnnotationDispatcher = new StaticValueDispatcher(reflectionDispatcher);
    PropertyDispatcher customDispatchers = createCustomDispatchers(pmo, bindingDescriptor, bindingAnnotationDispatcher);
    return new BehaviorDependentDispatcher(customDispatchers, behaviorProvider);
// @formatter:on
}
Also used : BehaviorDependentDispatcher(org.linkki.core.binding.dispatcher.BehaviorDependentDispatcher) ReflectionPropertyDispatcher(org.linkki.core.binding.dispatcher.ReflectionPropertyDispatcher) ExceptionPropertyDispatcher(org.linkki.core.binding.dispatcher.ExceptionPropertyDispatcher) ReflectionPropertyDispatcher(org.linkki.core.binding.dispatcher.ReflectionPropertyDispatcher) PropertyDispatcher(org.linkki.core.binding.dispatcher.PropertyDispatcher) ExceptionPropertyDispatcher(org.linkki.core.binding.dispatcher.ExceptionPropertyDispatcher) StaticValueDispatcher(org.linkki.core.binding.dispatcher.StaticValueDispatcher)

Example 2 with BehaviorDependentDispatcher

use of org.linkki.core.binding.dispatcher.BehaviorDependentDispatcher in project linkki by linkki-framework.

the class PropertyDispatcherFactory method createDispatcherChain.

public PropertyDispatcher createDispatcherChain(ButtonPmo buttonPmo, PropertyBehaviorProvider behaviorProvider) {
    requireNonNull(buttonPmo, "buttonPmo must not be null");
    requireNonNull(behaviorProvider, "behaviorProvider must not be null");
    // @formatter:off
    String modelObjectName = ModelObject.DEFAULT_NAME;
    ExceptionPropertyDispatcher exceptionDispatcher = newExceptionDispatcher(buttonPmo, modelObjectName, StringUtils.EMPTY);
    ReflectionPropertyDispatcher reflectionDispatcher = newReflectionDispatcher(buttonPmo, StringUtils.EMPTY, modelObjectName, StringUtils.EMPTY, exceptionDispatcher);
    @SuppressWarnings("deprecation") org.linkki.core.binding.dispatcher.ButtonPmoDispatcher buttonPmoDispatcher = new org.linkki.core.binding.dispatcher.ButtonPmoDispatcher(reflectionDispatcher);
    return new BehaviorDependentDispatcher(buttonPmoDispatcher, behaviorProvider);
// @formatter:on
}
Also used : BehaviorDependentDispatcher(org.linkki.core.binding.dispatcher.BehaviorDependentDispatcher) ReflectionPropertyDispatcher(org.linkki.core.binding.dispatcher.ReflectionPropertyDispatcher) ExceptionPropertyDispatcher(org.linkki.core.binding.dispatcher.ExceptionPropertyDispatcher)

Aggregations

BehaviorDependentDispatcher (org.linkki.core.binding.dispatcher.BehaviorDependentDispatcher)2 ExceptionPropertyDispatcher (org.linkki.core.binding.dispatcher.ExceptionPropertyDispatcher)2 ReflectionPropertyDispatcher (org.linkki.core.binding.dispatcher.ReflectionPropertyDispatcher)2 PropertyDispatcher (org.linkki.core.binding.dispatcher.PropertyDispatcher)1 StaticValueDispatcher (org.linkki.core.binding.dispatcher.StaticValueDispatcher)1