Changeset 28938 in osm for applications/editors/josm/plugins/smed2/src/smed2
- Timestamp:
- 2012-11-15T19:05:19+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/smed2/Smed2Action.java
r28722 r28938 15 15 import org.openstreetmap.josm.Main; 16 16 17 import S57.S57dat; 18 17 19 import panels.PanelMain; 18 20 … … 21 23 private static final long serialVersionUID = 1L; 22 24 private static String editor = tr("SeaMap Editor"); 23 private JFrame frame = null; 25 public static JFrame frame = null; 26 public static S57dat panelS57; 24 27 private boolean isOpen = false; 25 public PanelMain panelMain = null;28 public static PanelMain panelMain = null; 26 29 public ImageryLayer rendering; 27 30 … … 58 61 panelMain = new PanelMain(); 59 62 frame.add(panelMain); 63 panelS57 = new S57dat(); 64 panelS57.setVisible(false); 65 frame.add(panelS57); 60 66 System.out.println("hello"); 61 67 rendering = ImageryLayer.create(new ImageryInfo("OpenSeaMap"));
Note:
See TracChangeset
for help on using the changeset viewer.