Schnittstelle UiComponentAdapter<T>

Alle Superschnittstellen:
UiComponentFactory

public interface UiComponentAdapter<T> extends UiComponentFactory
An extension of UiComponentFactory that also supports the updating of component value. The value update is implemented in the method updateComponent(UiComponent, Object).

Implementations of this interface are intended to be stateless so that they can be applied to multiple component instances (hat have been created by the same instance). They should only update components they receive as arguments to updateComponent(UiComponent, Object) and not keep any reference to components in fields.

  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    updateComponent(UiComponent<?,?> component, T value)
    Updates a component from the given value.

    Von Schnittstelle geerbte Methoden de.esoco.process.ui.UiComponentFactory

    createComponent
  • Methodendetails

    • updateComponent

      void updateComponent(UiComponent<?,?> component, T value)
      Updates a component from the given value.
      Parameter:
      component - The component to be updated
      value - The new value to update the component from