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"?
feedback
|
|
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) They can be also viewed as "property manager", as they allow discovery and access of their properties (through | ||||
|
feedback
|
|
In C, a | |||||
feedback
|