| 1001 | /// Overriden to workaround issue with caps text and different UIID's |
| 1002 | /// {@inheritDoc} |
| 1003 | @Override |
| 1004 | public void setUIID(String id) { |
| 1005 | super.setUIID(id); |
| 1006 | String t = (String) getClientProperty("cn1$origText"); |
| 1007 | if (t != null) { |
| 1008 | if (isCapsText()) { |
| 1009 | super.setText(UIManager.getInstance().localize(t, t).toUpperCase()); |
| 1010 | } else { |
| 1011 | super.setText(UIManager.getInstance().localize(t, t)); |
| 1012 | putClientProperty("cn1$origText", null); |
| 1013 | } |
| 1014 | } |
| 1015 | } |
| 1016 | |
| 1017 | |
| 1018 | /// {@inheritDoc} |