Changeset 30532 in osm for applications/editors/josm/plugins/lakewalker/src
- Timestamp:
- 2014-07-14T04:18:06+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/StringEnumConfigurer.java
r23190 r30532 44 44 protected String[] validValues; 45 45 protected String[] transValues; 46 protected JComboBox box; 46 protected JComboBox<String> box; 47 47 protected Box panel; 48 48 protected String tooltipText = ""; … … 68 68 panel = Box.createHorizontalBox(); 69 69 panel.add(new JLabel(name)); 70 box = new JComboBox(transValues); 70 box = new JComboBox<>(transValues); 71 71 box.setToolTipText(tooltipText); 72 72 box.setMaximumSize(new Dimension(box.getMaximumSize().width,box.getPreferredSize().height));
Note:
See TracChangeset
for help on using the changeset viewer.