Input

abstract class Input(key: String? = null, required: Boolean = false, header: InputHeader? = null, columns: Int? = null) : Serializable

Base input definition that can be added to the input dialog.

Parameters

key

The key of the input that is used for saving the data in the result bundle. (Alternatively the index of the input is used.)

required

If the input is required to finish the dialog.

header

The additional InputHeader to add more context information to the selection.

columns

The columns that this input spans.

Inheritors

Constructors

Link copied to clipboard
constructor(key: String? = null, required: Boolean = false, header: InputHeader? = null, columns: Int? = null)