Kah – The Developer

Posts Tagged ‘JGoodies Binding

Controlling UI Components using JGoodies Binding

Posted by: kahgoh on: 7 July, 2009

In Binding with JGoodies Binding, the binding library from JGoodies was introduced with a relatively simple example. The binding framework can also be used to automatically enable or disable user interface components depending on some condition.
A model is used to notify when the component should be enabled or disabled. This is a relatively simple model. [...]

Binding with JGoodies Binding

Posted by: kahgoh on: 29 April, 2009

The binding framework allows you to write classes that represents model completely independent of the user interface. The classes are bound to the user interface and are updated as the user interface enters information. The frame is based on the presentation pattern, described by Martin Fowler.
The framework already provides a Model class. Classes containing [...]