Changeset 30737 in osm for applications/editors/josm/plugins/smed/src/panels/PanelSaw.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/PanelSaw.java
r29894 r30737 20 20 public JRadioButton floatButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/FloatButton.png"))); 21 21 public JRadioButton beaconButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/BeaconButton.png"))); 22 public EnumMap<Shp, JRadioButton> shapes = new EnumMap< Shp, JRadioButton>(Shp.class);23 public EnumMap<Shp, Obj> objects = new EnumMap< Shp, Obj>(Shp.class);22 public EnumMap<Shp, JRadioButton> shapes = new EnumMap<>(Shp.class); 23 public EnumMap<Shp, Obj> objects = new EnumMap<>(Shp.class); 24 24 public ActionListener alShape = new ActionListener() { 25 25 public void actionPerformed(java.awt.event.ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.