Changeset 2945 in osm for applications/editors/josm
- Timestamp:
- 2007-05-19T23:49:16+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorPlugin.java
r2936 r2945 6 6 import javax.swing.AbstractAction; 7 7 import javax.swing.JCheckBoxMenuItem; 8 import javax.swing.JFrame; 8 9 import javax.swing.JMenuItem; 9 10 import javax.swing.KeyStroke; … … 21 22 */ 22 23 public class SurveyorPlugin extends LiveGpsPlugin { 24 25 private static JFrame surveyorFrame; 23 26 24 27 /** … … 39 42 40 43 } 44 45 /** 46 * @return the surveyorFrame 47 */ 48 public static JFrame getSurveyorFrame() { 49 return surveyorFrame; 50 } 51 52 /** 53 * @param surveyorFrame the surveyorFrame to set 54 */ 55 public static void setSurveyorFrame(JFrame surveyorFrame) { 56 SurveyorPlugin.surveyorFrame = surveyorFrame; 57 } 41 58 42 59 }
Note:
See TracChangeset
for help on using the changeset viewer.