Index: /applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LoadImageAction.java
===================================================================
--- /applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LoadImageAction.java	(revision 28366)
+++ /applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LoadImageAction.java	(revision 28367)
@@ -1,10 +1,10 @@
 package org.openstreetmap.josm.plugins.ImportImagePlugin;
+import static org.openstreetmap.josm.tools.I18n.marktr;
+import static org.openstreetmap.josm.tools.I18n.tr;
+
 import java.awt.event.ActionEvent;
 
 import javax.swing.JFileChooser;
 import javax.swing.JOptionPane;
-
-import static org.openstreetmap.josm.tools.I18n.tr;
-import static org.openstreetmap.josm.tools.I18n.marktr;
 
 import org.apache.log4j.Logger;
@@ -29,8 +29,9 @@
      */
     public LoadImageAction() {
-        super(tr("Import image"), null, tr("Import georeferenced image"), null, false, "importimage/loadimage", true);
+        super(tr("Import image"), (String)null, tr("Import georeferenced image"), null, false, "importimage/loadimage", true);
     }
 
-    public void actionPerformed(ActionEvent arg0) {
+    @Override
+	public void actionPerformed(ActionEvent arg0) {
 
         // Choose a file
Index: /applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java
===================================================================
--- /applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java	(revision 28366)
+++ /applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java	(revision 28367)
@@ -47,8 +47,9 @@
 
         public Action() {
-            super(tr("Osmarender"), null, tr("Osmarender"), null, true, "osmarender", true);
-        }
-
-        public void actionPerformed(ActionEvent e) {
+            super(tr("Osmarender"), (String)null, tr("Osmarender"), null, true, "osmarender", true);
+        }
+
+        @Override
+		public void actionPerformed(ActionEvent e) {
             // get all stuff visible on screen
             LatLon bottomLeft = Main.map.mapView.getLatLon(0,Main.map.mapView.getHeight());
Index: /applications/editors/josm/plugins/print/.classpath
===================================================================
--- /applications/editors/josm/plugins/print/.classpath	(revision 28367)
+++ /applications/editors/josm/plugins/print/.classpath	(revision 28367)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
Index: /applications/editors/josm/plugins/print/.project
===================================================================
--- /applications/editors/josm/plugins/print/.project	(revision 28367)
+++ /applications/editors/josm/plugins/print/.project	(revision 28367)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>print</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: /applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintAction.java
===================================================================
--- /applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintAction.java	(revision 28366)
+++ /applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintAction.java	(revision 28367)
@@ -1,23 +1,23 @@
 /*
  *      PrintAction.java
- *      
+ *
  *      Copyright 2011 Kai Pastor
- *      
+ *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by
  *      the Free Software Foundation; either version 2 of the License, or
  *      (at your option) any later version.
- *      
+ *
  *      This program is distributed in the hope that it will be useful,
  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *      GNU General Public License for more details.
- *      
+ *
  *      You should have received a copy of the GNU General Public License
  *      along with this program; if not, write to the Free Software
  *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *      MA 02110-1301, USA.
- *      
- *      
+ *
+ *
  */
 
@@ -40,11 +40,11 @@
  */
 public class PrintAction extends JosmAction implements Runnable {
-    
+
     /**
      * Create a new PrintAction.
      */
     public PrintAction() {
-        super(tr("Print..."), null, tr("Print the map"), 
-        Shortcut.registerShortcut("print:print", tr("File: {0}", tr("Print...")), 
+        super(tr("Print..."), (String)null, tr("Print the map"),
+        Shortcut.registerShortcut("print:print", tr("File: {0}", tr("Print...")),
 	KeyEvent.VK_P, Shortcut.CTRL),
         true, "print/print", true);
@@ -53,18 +53,20 @@
     /**
      * Trigger the printing dialog.
-     * 
+     *
      * @param e not used.
      */
-    public void actionPerformed(ActionEvent e) {
+    @Override
+	public void actionPerformed(ActionEvent e) {
         // Allow the JOSM GUI to be redrawn before modifying preferences
         SwingUtilities.invokeLater(this);
     }
-    
+
     /**
      * Open the printing dialog
-     * 
+     *
      * This will temporarily modify the mappaint preferences.
      */
-    public void run () {
+    @Override
+	public void run () {
         PrintPlugin.adjustPrefs();
         PrintDialog window = new PrintDialog(Main.main.parent);
