scala.beans

package beans

Type Members

class BeanDescription extends Annotation

Provides a short description that will be included when generating bean information. This annotation can be attached to the bean itself, or to any member.

class BeanDisplayName extends Annotation

Provides a display name when generating bean information. This annotation can be attached to the bean itself, or to any member.

class BeanInfo extends Annotation

This annotation indicates that a JavaBean-compliant BeanInfo class should be generated for this annotated Scala class.

  • A val becomes a read-only property.
  • A var becomes a read-write property.
  • A def becomes a method.

  • Annotations
    • @ deprecated
  • Deprecated
    • (Since version 2.12.0) the generation of BeanInfo classes is no longer supported
  • Source

class BeanInfoSkip extends Annotation

This annotation indicates that bean information should not be generated for the val, var, or def that it is attached to.

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.

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 .

abstract class ScalaBeanInfo extends SimpleBeanInfo

Provides some simple runtime processing necessary to create JavaBean descriptors for Scala entities. The compiler creates subclasses of this class automatically when the BeanInfo annotation is attached to a class.

Full Source:

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */


package scala.beans

/** Provides a short description that will be included when generating
 *  bean information. This annotation can be attached to the bean itself,
 *  or to any member.
 *
 *  @author Ross Judson (rjudson@managedobjects.com)
 */
class BeanDescription(val description: String) extends scala.annotation.Annotation