|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface BeanBinder
Describes a binder that adds bindings for bound bean properties to the general object bindings.
Examples:
BeanBinder binder = BasicBinders.binderFor(aBean);
binder.bindProperty("artist") .to(artistField);
binder.bindProperty("title") .to(titleField);
binder.bindProperty("classical").to(classicalBox);
| Method Summary | |
|---|---|
ValueModelBindingBuilder |
bindProperty(String propertyName)
Looks up a ValueModel for the given (bean) property name. |
| Methods inherited from interface com.jgoodies.binding.binder.ObjectBinder |
|---|
bind, bind, bind, bind |
| Method Detail |
|---|
ValueModelBindingBuilder bindProperty(String propertyName)
Examples:
binder.bindProperty("artist") .to(artistField);
binder.bindProperty(PROPERTY_ARTIST).to(artistField);
propertyName - the name of the bean property to be converted
to a ValueModel
NullPointerException - if propertyName is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||