Scala Library: scala.beans
scala.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:
adds the following methods to the class:
For fields of type Boolean
, if you need a getter named isStatus
, use the
scala.beans.BooleanBeanProperty
annotation instead.
- Annotations
- @ field ()
- Source
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 ()
- Source
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:
Interested in Scala?
I send out weekly, personalized emails with articles and conference talks.
Subscribe now.