Java has the concept of a "bean", which is a class with a no-arg constructor and getter/setter methods. Does this pattern have a more generic name so that, if we're talking to programmers who have never used Java, we can avoid using the term "bean"?

link|improve this question

77% accept rate
2  
Do you mean Paula Bean? – bniwredyc Dec 14 '09 at 19:16
feedback

2 Answers

If you look at JavaBean definition, a more "generic" name could be reusable software component (see this tutorial from 1996!), as it provides a well-defined set of services (serialization, accessors, nullary constructor)
But of course all components are not necessarily JavaBean.

They can be also viewed as "property manager", as they allow discovery and access of their properties (through PropertyDescriptor, as well as managing constraints between properties.
That last aspect allows for JVM-based languages like Scala to adapt their own properties to the JavaBean convention, with scala.reflect.BeanProperty directive.

link|improve this answer
feedback

In C, a struct. In VB, structure.

link|improve this answer
A bean is a little more than a struct though - it's a struct with accessor methods. – Dan Dec 14 '09 at 19:17
+1, a bean is exactly a struct. The accessor methods are specific to Java and are not needed in languages that support properties (Python, C#, Scala, etc.). – gooli Dec 18 '09 at 8:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.