Home > Archive > Java Help > August 2005 > Bound property
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Is a bound property one that has a public set and get method?
| |
| Darryl L. Pierce 2005-08-28, 7:57 am |
| - wrote:
> Is a bound property one that has a public set and get method?
A bound property is one that has a set of specific, allowed values.
--
Darryl L. Pierce <mcpierce@gmail.com>
Homepage: http://mcpierce.multiply.com/
"Bury me next to my wife. Nothing too fancy..." - Ulysses S. Grant
| |
| Tor Iver Wilhelmsen 2005-08-29, 7:02 pm |
| "Darryl L. Pierce" <mcpierce@gmail.com> writes:
> A bound property is one that has a set of specific, allowed values.
No, a bound property is one that generates a PropertyChangeEvent when
its value changes. I.e. the bean has
add/removePropertyChangeListener() methods.
|
|
|
|
|