Index: trunk/src/org/openstreetmap/josm/gui/MapView.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 10939)
+++ trunk/src/org/openstreetmap/josm/gui/MapView.java	(revision 10940)
@@ -156,4 +156,8 @@
         }
 
+        /**
+         * Invalidate contents and repaint map view
+         * @param mapViewPaintable invalidated layer
+         */
         public synchronized void invalidate(MapViewPaintable mapViewPaintable) {
             ignoreRepaint = true;
Index: trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java	(revision 10939)
+++ trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java	(revision 10940)
@@ -392,4 +392,7 @@
     }
 
+    /**
+     * Role condition.
+     */
     public static class RoleCondition implements Condition {
         final String role;
@@ -414,4 +417,7 @@
     }
 
+    /**
+     * Index condition.
+     */
     public static class IndexCondition implements Condition {
         final String index;
@@ -562,9 +568,18 @@
     }
 
+    /**
+     * Class condition.
+     */
     public static class ClassCondition implements Condition {
 
+        /** Class identifier */
         public final String id;
         final boolean not;
 
+        /**
+         * Constructs a new {@code ClassCondition}.
+         * @param id id
+         * @param not negation or not
+         */
         public ClassCondition(String id, boolean not) {
             this.id = id;
@@ -755,4 +770,7 @@
     }
 
+    /**
+     * Pseudo class condition.
+     */
     public static class PseudoClassCondition implements Condition {
 
@@ -811,5 +829,12 @@
     }
 
+    /**
+     * Open end pseudo class condition.
+     */
     public static class OpenEndPseudoClassCondition extends PseudoClassCondition {
+        /**
+         * Constructs a new {@code OpenEndPseudoClassCondition}.
+         * @param not negation or not
+         */
         public OpenEndPseudoClassCondition(boolean not) {
             super(null, not);
