Package cdx.scorebot.util.swing.binding.delegate

This package contains delegates for various types of bound Java Swing components.

See:
          Description

Interface Summary
BoundComponent This interface specifies an accessor to a BoundDelegateComponent which binds the implementor to some Object.
BoundContainer This interface specifies an accessor to a BoundDelegateContainer which is an extension of a normal BoundComponent in that it may contain other BoundComponents.
BoundDelegateComponent This interface specifies the methods which bind some object to some component.
BoundDelegateContainer This interface specifies methods which extend a normal BoundComponent into one which may contain other BoundDelegateComponents.
 

Class Summary
ButtonGroupDelegate<FROM,TO> A delegate for a ButtonGroup which is bound to a value of type FROM which can be represented as some type TO.
CalHourBoxComponentDelegate A delegate for a CalendarHourComboBox
GenericDelegate<FROM,TO> Binds some Object of type FROM to a component which requires type TO
GenericJComponentDelegate<FROM,TO> Binds some Object of type FROM to a component which requires type TO
IntermediateFieldDelegate<TYPE> A delegate for an intermediate field of type TYPE.
JComboBoxComponentDelegate A delegate for a JComboBox which is bound to an AbstractList.
JLabelComponentDelegate<FROM> A delegate for a JLabel which is bound to a value of type FROM which can be represented as a String.
JListComponentDelegate A delegate for a JList which is bound to an AbstractList.
JMenuComponentDelegate A delegate for a JMenu which is bound to an AbstractList.
JTextComponentDelegate<FROM> A delegate for a JTextComponent which is bound to a value of type FROM which can be represented as a String.
JToggleButtonComponentDelegate<FROM> A delegate for a JToggleButton which is bound to a value of type FROM which can be represented as a Boolean.
ListBasedComponentDelegate A delegate for a JList, JComboBox, or other type which is bound to an AbstractList.
 

Package cdx.scorebot.util.swing.binding.delegate Description

This package contains delegates for various types of bound Java Swing components. These delegates implement the actual binding procedures and standardize the process across multiple components as much as possible.