Changeset 34403 in osm for applications/editors/josm/plugins/pdfimport
- Timestamp:
- 2018-07-08T03:28:38+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiFieldBool.java
r34398 r34403 11 11 12 12 public class GuiFieldBool extends JCheckBox { 13 private JComponent companion =null;14 private e = false;13 private JComponent companion; 14 private boolean value; 15 15 16 16 public JComponent getCompanion() { … … 28 28 29 29 public void setValue(boolean value) { 30 value = value; 30 this.value = value; 31 31 super.setSelected(value); 32 32 }
Note:
See TracChangeset
for help on using the changeset viewer.