package util
- Alphabetic
- Public
- All
Type Members
- final case class Gain(decibels: Float, normalized: Boolean) extends Writable with Product with Serializable
-
trait
Veto[-Tx] extends AnyRef
A trait representing an object that has an objection to a particular action.
A trait representing an object that has an objection to a particular action. This objection is manifested through a human readable
vetoMessagewhich would generally also be displayed in the GUI when callingtryResolveVeto.For example, if trying to close a window that is in dirty state, calling
tryResolveVetowill display the veto message in a dialog to the user, and the user can confirm the closure, which would result in atruereturn value, or abort the closure, which would result in afalsereturn type.