Actions0Builder

open class Actions0Builder<R>(val actions: MutableList<Action0<R>> = mutableListOf()) : ActionsBuilder<Action0<R>, () -> R>

Constructors

Link copied to clipboard
constructor(actions: MutableList<Action0<R>> = mutableListOf())

Functions

Link copied to clipboard
open override fun on(name: String, key: String, handler: () -> R): Action0<R>
Link copied to clipboard
fun onAdd(handler: () -> R): Action0<R>
fun onAdd(entity: String, handler: () -> R): Action0<R>
Link copied to clipboard
fun onAddAll(handler: () -> R): Action0<R>
fun onAddAll(col: Collection<Any?>, handler: () -> R): Action0<R>
Link copied to clipboard
fun onCancel(handler: () -> R): Action0<R>
Link copied to clipboard
fun onCreate(handler: () -> R): Action0<R>
Link copied to clipboard
fun onDelete(handler: () -> R): Action0<R>
Link copied to clipboard
fun onDeleteAll(handler: () -> R): Action0<R>
fun onDeleteAll(col: Collection<Any?>, handler: () -> R): Action0<R>
Link copied to clipboard
fun onDuplicate(handler: () -> R): Action0<R>
Link copied to clipboard
fun onEdit(handler: () -> R): Action0<R>
Link copied to clipboard
fun onGoBack(handler: () -> R): Action0<R>
Link copied to clipboard
fun onNo(handler: () -> R): Action0<R>
Link copied to clipboard
fun onOk(handler: () -> R): Action0<R>
Link copied to clipboard
fun onRetry(handler: () -> R): Action0<R>
Link copied to clipboard
fun onUpdate(handler: () -> R): Action0<R>
Link copied to clipboard
fun onView(handler: () -> R): Action0<R>
Link copied to clipboard
fun onYes(handler: () -> R): Action0<R>

Properties

Link copied to clipboard