Index: applications/editors/josm/plugins/gpxfilter/.checkstyle
===================================================================
--- applications/editors/josm/plugins/gpxfilter/.checkstyle	(revision 32546)
+++ applications/editors/josm/plugins/gpxfilter/.checkstyle	(revision 32546)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
+  <local-check-config name="JOSM" location="/JOSM/tools/checkstyle/josm_checks.xml" type="project" description="">
+    <additional-data name="protect-config-file" value="false"/>
+  </local-check-config>
+  <fileset name="all" enabled="true" check-config-name="JOSM" local="true">
+    <file-match-pattern match-pattern="." include-pattern="true"/>
+  </fileset>
+  <filter name="DerivedFiles" enabled="true"/>
+  <filter name="FilesFromPackage" enabled="true">
+    <filter-data value="data"/>
+    <filter-data value="images"/>
+    <filter-data value="styles"/>
+    <filter-data value="resources"/>
+    <filter-data value="scripts"/>
+  </filter>
+</fileset-config>
Index: applications/editors/josm/plugins/gpxfilter/.project
===================================================================
--- applications/editors/josm/plugins/gpxfilter/.project	(revision 32545)
+++ applications/editors/josm/plugins/gpxfilter/.project	(revision 32546)
@@ -16,7 +16,13 @@
 			</arguments>
 		</buildCommand>
+		<buildCommand>
+			<name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
 	</natures>
 </projectDescription>
Index: applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java
===================================================================
--- applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java	(revision 32545)
+++ applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java	(revision 32546)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package gpxfilter;
 
@@ -14,5 +15,5 @@
 
     public AddEGpxLayerAction() {
-        super(tr("Add EGPX layer"),(String)null,tr("Add EGPX layer"),
+        super(tr("Add EGPX layer"), (String) null, tr("Add EGPX layer"),
             Shortcut.registerShortcut("gpxfilter:egpx", tr("Tool: {0}", tr("Add EGPX layer")),
                  KeyEvent.VK_X, Shortcut.ALT_SHIFT),
@@ -26,5 +27,5 @@
 
     @Override
-    public void actionPerformed(ActionEvent arg0)  {
+    public void actionPerformed(ActionEvent arg0) {
         getLayerManager().addLayer(new EGpxLayer(Main.map.mapView.getRealBounds()));
     }
Index: applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java
===================================================================
--- applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java	(revision 32545)
+++ applications/editors/josm/plugins/gpxfilter/src/gpxfilter/EGpxLayer.java	(revision 32546)
@@ -1,4 +1,3 @@
-// License: GPL. See LICENSE file for details.
-
+// License: GPL. For details, see LICENSE file.
 package gpxfilter;
 
@@ -13,6 +12,5 @@
     public EGpxLayer(final Bounds b) {
         super(new GpxData(), tr("GPX Data"));
-        Thread t = new Thread(new Runnable()
-        {
+        Thread t = new Thread(new Runnable() {
             @Override
             public void run() {
Index: applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxFilterPlugin.java
===================================================================
--- applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxFilterPlugin.java	(revision 32545)
+++ applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxFilterPlugin.java	(revision 32546)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package gpxfilter;
 
Index: applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxGrabber.java
===================================================================
--- applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxGrabber.java	(revision 32545)
+++ applications/editors/josm/plugins/gpxfilter/src/gpxfilter/GpxGrabber.java	(revision 32546)
@@ -1,3 +1,3 @@
-// License: GPL. Copyright 2007 by Immanuel Scholz and others
+// License: GPL. For details, see LICENSE file.
 package gpxfilter;
 
@@ -41,5 +41,5 @@
      *      ways.
      */
-    public GpxData parseRawGps() throws IOException, SAXException,OsmTransferException {
+    public GpxData parseRawGps() throws IOException, SAXException, OsmTransferException {
         String url = "trackpoints?bbox="+lon1+","+lat1+","+lon2+","+lat2+"&page="+page;
         try (InputStream in = getInputStream(url, NullProgressMonitor.INSTANCE)) {
