Index: /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java
===================================================================
--- /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java	(revision 31333)
+++ /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java	(revision 31334)
@@ -34,4 +34,5 @@
  * 
  * @author nokutu
+ * @see MapillaryFilterChooseSigns
  *
  */
@@ -63,4 +64,5 @@
             .getInstance();
 
+    /** The list of sign names */
     private final String[] SIGN_TAGS = { "prohibitory_speed_limit",
             "priority_stop", "other_give_way", "mandatory_roundabout",
@@ -71,4 +73,5 @@
             "danger_pedestrian_crossing", "prohibitory_no_u_turn",
             "prohibitory_noturn" };
+    /** The the {@link JCheckBox} where the respective tag should be searched */
     private final JCheckBox[] SIGN_CHECKBOXES = { signFilter.maxspeed,
             signFilter.stop, signFilter.giveWay, signFilter.roundabout,
@@ -134,4 +137,7 @@
     }
 
+    /**
+     * Resets the dialog to its default state.
+     */
     public void reset() {
         imported.setSelected(true);
@@ -144,4 +150,7 @@
     }
 
+    /**
+     * Applies the selected filter.
+     */
     public synchronized void refresh() {
         boolean imported = this.imported.isSelected();
@@ -202,4 +211,13 @@
     }
 
+    /**
+     * Checks if the image fulfills the sign conditions.
+     * 
+     * @param img
+     *            The {@link MapillaryAbstractImage} object that is going to be
+     *            checked.
+     * @return {@code true} if it fulfills the conditions; {@code false}
+     *         otherwise.
+     */
     private boolean checkSigns(MapillaryImage img) {
         for (int i = 0; i < SIGN_TAGS.length; i++) {
Index: /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java
===================================================================
--- /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java	(revision 31333)
+++ /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java	(revision 31334)
@@ -31,8 +31,9 @@
 
 /**
- * Toggle dialog that shows you the latest commands done and allows the user to
+ * Toggle dialog that shows you the latest {@link MapillaryCommand} done and allows the user to
  * revert them.
  * 
  * @see MapillaryRecord
+ * @see MapillaryCommand
  * @author nokutu
  *
Index: /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java
===================================================================
--- /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java	(revision 31333)
+++ /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java	(revision 31334)
@@ -478,4 +478,7 @@
     }
 
+    /**
+     * Zooms to 1:1 and, if it is already in 1:1, to best fit.
+     */
     public void zoomBestFitOrOne() {
         Image image;
Index: /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java
===================================================================
--- /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 31333)
+++ /applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 31334)
@@ -214,4 +214,7 @@
     }
 
+    /**
+     * Updates the title of the dialog.
+     */
     public synchronized void updateTitle() {
         if (!SwingUtilities.isEventDispatchThread()) {
