Index: applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorPlugin.java
===================================================================
--- applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorPlugin.java	(revision 2944)
+++ applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorPlugin.java	(revision 2945)
@@ -6,4 +6,5 @@
 import javax.swing.AbstractAction;
 import javax.swing.JCheckBoxMenuItem;
+import javax.swing.JFrame;
 import javax.swing.JMenuItem;
 import javax.swing.KeyStroke;
@@ -21,4 +22,6 @@
  */
 public class SurveyorPlugin extends LiveGpsPlugin {
+    
+    private static JFrame surveyorFrame;
 
     /**
@@ -39,4 +42,18 @@
         
     }
+
+    /**
+     * @return the surveyorFrame
+     */
+    public static JFrame getSurveyorFrame() {
+        return surveyorFrame;
+    }
+
+    /**
+     * @param surveyorFrame the surveyorFrame to set
+     */
+    public static void setSurveyorFrame(JFrame surveyorFrame) {
+        SurveyorPlugin.surveyorFrame = surveyorFrame;
+    }
     
 }
