W3cubDocs

/Scala 2.13 Library

Package scala.beans

package beans

Type Members

class BeanProperty extends Annotation with StaticAnnotation

When attached to a field, this annotation adds a setter and a getter method following the Java Bean convention. For example:

@BeanProperty
var status = ""

adds the following methods to the class:

def setStatus(s: String) { this.status = s }
def getStatus: String = this.status

For fields of type Boolean, if you need a getter named isStatus, use the scala.beans.BooleanBeanProperty annotation instead.

Annotations
@field() @deprecatedInheritance("Scheduled for being final in 2.14", "2.13.0")

class BooleanBeanProperty extends Annotation with StaticAnnotation

This annotation has the same functionality as scala.beans.BeanProperty, but the generated Bean getter will be named isFieldName instead of getFieldName.

Annotations
@field() @deprecatedInheritance("Scheduled for being final in 2.14", "2.13.0")

© 2002-2019 EPFL, with contributions from Lightbend.
Licensed under the Apache License, Version 2.0.
https://www.scala-lang.org/api/2.13.0/scala/beans/index.html