Changeset 30737 in osm for applications/editors/josm/plugins/smed/src/panels/PanelMore.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/panels/PanelMore.java
r30532 r30737 45 45 public JLabel statusLabel; 46 46 public JComboBox<String> statusBox; 47 public EnumMap<Sts, Integer> statuses = new EnumMap< Sts, Integer>(Sts.class);47 public EnumMap<Sts, Integer> statuses = new EnumMap<>(Sts.class); 48 48 private ActionListener alStatus = new ActionListener() { 49 49 public void actionPerformed(java.awt.event.ActionEvent e) { … … 57 57 public JLabel constrLabel; 58 58 public JComboBox<String> constrBox; 59 public EnumMap<Cns, Integer> constructions = new EnumMap< Cns, Integer>(Cns.class);59 public EnumMap<Cns, Integer> constructions = new EnumMap<>(Cns.class); 60 60 private ActionListener alConstr = new ActionListener() { 61 61 public void actionPerformed(java.awt.event.ActionEvent e) { … … 69 69 public JLabel conLabel; 70 70 public JComboBox<String> conBox; 71 public EnumMap<Con, Integer> conspicuities = new EnumMap< Con, Integer>(Con.class);71 public EnumMap<Con, Integer> conspicuities = new EnumMap<>(Con.class); 72 72 private ActionListener alCon = new ActionListener() { 73 73 public void actionPerformed(java.awt.event.ActionEvent e) { … … 81 81 public JLabel reflLabel; 82 82 public JComboBox<String> reflBox; 83 public EnumMap<Con, Integer> reflectivities = new EnumMap< Con, Integer>(Con.class);83 public EnumMap<Con, Integer> reflectivities = new EnumMap<>(Con.class); 84 84 private ActionListener alRefl = new ActionListener() { 85 85 public void actionPerformed(java.awt.event.ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.
