Interface DraggableAccessor.DraggableBuilder<B extends DraggableAccessor.DraggableBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
DraggableAccessor

public static interface DraggableAccessor.DraggableBuilder<B extends DraggableAccessor.DraggableBuilder<B>>
Provides a builder method for a draggable property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    Sets the draggability for the draggable property.
    withDraggable(boolean isDraggable)
    Sets the draggability for the draggable property.
    Sets the draggability for the draggable property.
  • Method Details

    • withDraggable

      B withDraggable()
      Sets the draggability for the draggable property.
      Returns:
      The builder for applying multiple build operations.
    • withStationary

      B withStationary()
      Sets the draggability for the draggable property.
      Returns:
      The builder for applying multiple build operations.
    • withDraggable

      B withDraggable(boolean isDraggable)
      Sets the draggability for the draggable property.
      Parameters:
      isDraggable - The draggability to be stored by the draggability property.
      Returns:
      The builder for applying multiple build operations.