OptionalValidatedImageProperty

open class OptionalValidatedImageProperty(initialValue: Image?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Image?>, Image?, Image?) -> Image?) : ValidatedProperty<Image?> , OptionalImageProperty

Boilerplate which avoids having to use generics.

Similar to ValidatedImageProperty, but the value can also be null.

Constructors

Link copied to clipboard
constructor(initialValue: Image?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Image?>, Image?, Image?) -> Image?)