Index: trunk/test/unit/org/CustomMatchers.java
===================================================================
--- trunk/test/unit/org/CustomMatchers.java	(revision 8759)
+++ trunk/test/unit/org/CustomMatchers.java	(revision 8857)
@@ -14,4 +14,7 @@
 import org.openstreetmap.josm.tools.Predicate;
 
+/**
+ * Custom matchers for unit tests.
+ */
 @Ignore("no test")
 public final class CustomMatchers {
@@ -21,4 +24,9 @@
     }
 
+    /**
+     * Matcher for a predicate.
+     * @param predicate the predicate
+     * @return matcher for a predicate
+     */
     public static <T> Matcher<? extends T> forPredicate(final Predicate<T> predicate) {
         return new TypeSafeMatcher<T>() {
@@ -36,4 +44,9 @@
     }
 
+    /**
+     * Matcher for a collection of a given size.
+     * @param size of collection
+     * @return matcher for a collection of a given size
+     */
     public static Matcher<Collection<?>> hasSize(final int size) {
         return new TypeSafeMatcher<Collection<?>>() {
@@ -50,4 +63,8 @@
     }
 
+    /**
+     * Matcher for an empty collection.
+     * @return matcher for an empty collection
+     */
     public static Matcher<Collection<?>> isEmpty() {
         return new TypeSafeMatcher<Collection<?>>() {
@@ -64,4 +81,9 @@
     }
 
+    /**
+     * Matcher for a point at a given location.
+     * @param expected expected location
+     * @return matcher for a point at a given location
+     */
     public static Matcher<? super Point2D> is(final Point2D expected) {
         return new CustomTypeSafeMatcher<Point2D>("the same Point2D") {
@@ -73,4 +95,9 @@
     }
 
+    /**
+     * Matcher for a point at a given location.
+     * @param expected expected location
+     * @return matcher for a point at a given location
+     */
     public static Matcher<? super LatLon> is(final LatLon expected) {
         return new CustomTypeSafeMatcher<LatLon>("the same LatLon") {
@@ -83,4 +110,9 @@
     }
 
+    /**
+     * Matcher for a point at a given location.
+     * @param expected expected location
+     * @return matcher for a point at a given location
+     */
     public static Matcher<? super EastNorth> is(final EastNorth expected) {
         return new CustomTypeSafeMatcher<EastNorth>("the same EastNorth") {
@@ -92,4 +124,3 @@
         };
     }
-
 }
