Changeset 30737 in osm for applications/editors/josm/plugins/smed/src/panels/PanelCol.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/panels/PanelCol.java
r29894 r30737 34 34 public JRadioButton magentaButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/MagentaButton.png"))); 35 35 public JRadioButton pinkButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/PinkButton.png"))); 36 public EnumMap<Col, JRadioButton> colours = new EnumMap< Col, JRadioButton>(Col.class);36 public EnumMap<Col, JRadioButton> colours = new EnumMap<>(Col.class); 37 37 private ActionListener alColour = new ActionListener() { 38 38 public void actionPerformed(java.awt.event.ActionEvent e) { … … 94 94 private JPanel stack; 95 95 private ButtonGroup stackColours = new ButtonGroup(); 96 private ArrayList<JRadioButton> stackCol = new ArrayList< JRadioButton>();96 private ArrayList<JRadioButton> stackCol = new ArrayList<>(); 97 97 private int stackIdx = 0; 98 98 private ActionListener alStack = new ActionListener() {
Note:
See TracChangeset
for help on using the changeset viewer.