(String t)
| 1135 | /// Overriden to implement the caps mode `#setCapsText(boolean)` |
| 1136 | /// {@inheritDoc} |
| 1137 | @Override |
| 1138 | public void setText(String t) { |
| 1139 | if (isCapsText()) { |
| 1140 | putClientProperty("cn1$origText", t); |
| 1141 | if (t != null) { |
| 1142 | super.setText(getUIManager().localize(t, t).toUpperCase()); |
| 1143 | return; |
| 1144 | } |
| 1145 | } |
| 1146 | super.setText(t); |
| 1147 | } |
| 1148 | } |