Interface ContentAccessor.ContentBuilder<T,​B extends ContentAccessor.ContentBuilder<T,​B>>

Type Parameters:
T - the generic type
B - The builder to return in order to be able to apply multiple build operations.
All Known Subinterfaces:
ViewportPane<C,​B>
Enclosing interface:
ContentAccessor<T>

public static interface ContentAccessor.ContentBuilder<T,​B extends ContentAccessor.ContentBuilder<T,​B>>
Provides a builder method for a content property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type Method Description
    B withContent​(T aContent)
    Sets the content for the content property.
  • Method Details

    • withContent

      B withContent​(T aContent)
      Sets the content for the content property.
      Parameters:
      aContent - The content to be stored by the content property.
      Returns:
      The builder for applying multiple build operations.