Changeset 9059 in josm for trunk/src/org/openstreetmap/josm/gui/widgets
- Timestamp:
- 2015-11-23T01:09:15+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/widgets
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java
r8840 r9059 32 32 * 33 33 */ 34 public abstract class AbstractTextComponentValidator implements ActionListener, FocusListener, DocumentListener, PropertyChangeListener {34 public abstract class AbstractTextComponentValidator implements ActionListener, FocusListener, DocumentListener, PropertyChangeListener { 35 35 private static final Border ERROR_BORDER = BorderFactory.createLineBorder(Color.RED, 1); 36 36 private static final Color ERROR_BACKGROUND = new Color(255, 224, 224); -
trunk/src/org/openstreetmap/josm/gui/widgets/BoundingBoxSelectionPanel.java
r8840 r9059 164 164 } 165 165 166 private static class LongitudeValidator extends AbstractTextComponentValidator {166 private static class LongitudeValidator extends AbstractTextComponentValidator { 167 167 168 168 public static void decorate(JTextComponent tc) { -
trunk/src/org/openstreetmap/josm/gui/widgets/QuadStateCheckBox.java
r8929 r9059 173 173 } 174 174 } 175 175 176 /** Rotate to the next allowed state.*/ 176 177 private void nextState() { -
trunk/src/org/openstreetmap/josm/gui/widgets/SelectAllOnFocusGainedDecorator.java
r8510 r9059 8 8 import javax.swing.text.JTextComponent; 9 9 10 public class SelectAllOnFocusGainedDecorator extends FocusAdapter {10 public class SelectAllOnFocusGainedDecorator extends FocusAdapter { 11 11 12 12 public static void decorate(JTextComponent tc) {
Note:
See TracChangeset
for help on using the changeset viewer.