Index: /applications/editors/josm/plugins/tageditor/.classpath
===================================================================
--- /applications/editors/josm/plugins/tageditor/.classpath	(revision 28368)
+++ /applications/editors/josm/plugins/tageditor/.classpath	(revision 28368)
@@ -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/tageditor/.project
===================================================================
--- /applications/editors/josm/plugins/tageditor/.project	(revision 28368)
+++ /applications/editors/josm/plugins/tageditor/.project	(revision 28368)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>tageditor</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/tageditor/src/org/openstreetmap/josm/plugins/tageditor/LaunchAction.java
===================================================================
--- /applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/LaunchAction.java	(revision 28367)
+++ /applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/LaunchAction.java	(revision 28368)
@@ -7,10 +7,4 @@
 import java.util.Collection;
 
-import javax.swing.JMenu;
-import javax.swing.JMenuBar;
-import javax.swing.JMenuItem;
-import javax.swing.KeyStroke;
-
-import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.actions.JosmAction;
 import org.openstreetmap.josm.data.SelectionChangedListener;
@@ -24,5 +18,5 @@
         super(
                 tr("Edit tags"),
-                null, //TODO: set "tag-editor" and add /images/tag-editor.png to distrib
+                (String)null, //TODO: set "tag-editor" and add /images/tag-editor.png to distrib
                 tr("Launches the tag editor dialog"),
                 Shortcut.registerShortcut("edit:launchtageditor", tr("Launches the tag editor dialog"),
@@ -45,9 +39,11 @@
     }
 
-    public void actionPerformed(ActionEvent e) {
+    @Override
+	public void actionPerformed(ActionEvent e) {
         launchEditor();
     }
 
-    public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
+    @Override
+	public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
         setEnabled(newSelection != null && newSelection.size() >0);
     }
