ComponentFactory should support radio buttons
---------------------------------------------
Key: RCP-272
URL: http://opensource.atlassian.com/projects/spring/browse/RCP-272
Project: Spring Framework Rich Client Project
Type: Improvement
Components: Binding System
Reporter: Frank Bowers
Assigned to: Oliver Hutchison
Priority: Minor
ComponentFactory should support radio buttons in the same way it supports checkboxes:
New methods:
public JRadioButton createNewRadioButton() {
return new JRadioButton();
}
public JRadioButton createRadioButton(String labelKey) {
return (JRadioButton) getButtonLabelInfo(getRequiredMessage(labelKey)).
configure(createNewRadioButton());
}
Without these methods you lose the advantage of defining mnemonics with the message string.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|