Example usage for Java com.jgoodies.binding PresentationModel fields, constructors, methods, implement or subclass
The text is from its open source code.
PresentationModel(B bean) Constructs a PresentationModel that adapts properties of the given bean. Installs a default bean channel that checks the identity not equity to ensure that listeners are unregistered properly if the old and new bean are equal but not the same. Installs a Trigger as initial trigger channel. | |
PresentationModel(ValueModel beanChannel) Constructs a PresentationModel on the given bean channel. | |
PresentationModel(B bean, ValueModel triggerChannel) Constructs a PresentationModel on the given bean using the given trigger channel. | |
PresentationModel(ValueModel beanChannel, ValueModel triggerChannel) Constructs a PresentationModel on the given bean channel using the given trigger channel. |
B | getBean() Returns the bean that holds the adapted properties. |
BufferedValueModel | getBufferedModel(String propertyName) Looks up or creates a buffered adapter to the read-write property with the given name on this PresentationModel's bean channel. |
AbstractValueModel | getModel(String propertyName) Looks up and lazily creates a ValueModel that adapts the bound property with the specified name. |
void | observeChanged(ValueModel valueModel) Observes value changes in the given ValueModel. |