Changeset 30737 in osm for applications/editors/josm/plugins/smed/src/panels/PanelRadar.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/panels/PanelRadar.java
r30532 r30737 29 29 }; 30 30 private JComboBox<String> radioCatBox; 31 private EnumMap<Cat, Integer> radioCats = new EnumMap< Cat, Integer>(Cat.class);31 private EnumMap<Cat, Integer> radioCats = new EnumMap<>(Cat.class); 32 32 private ActionListener alRadioCatBox = new ActionListener() { 33 33 public void actionPerformed(java.awt.event.ActionEvent e) { … … 46 46 public JRadioButton raconButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/RaconButton.png"))); 47 47 public JRadioButton leadingButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/LeadingRaconButton.png"))); 48 private EnumMap<Rtb, JRadioButton> rads = new EnumMap< Rtb, JRadioButton>(Rtb.class);48 private EnumMap<Rtb, JRadioButton> rads = new EnumMap<>(Rtb.class); 49 49 private ActionListener alRad = new ActionListener() { 50 50 public void actionPerformed(java.awt.event.ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.