My favorites | Sign in
Logo
                
Changes to /trunk/hamcrest-java/hamcrest-core/src/main/java/org/hamcrest/SelfDescribing.java
r228 vs. r287   Edit
  Compare: vs.   Format:
Revision r287
Go to: 
Project members, sign in to write a code review
/trunk/hamcrest-java/hamcrest-core/src/main/java/org/hamcrest/SelfDescribing.java   r228 /trunk/hamcrest-java/hamcrest-core/src/main/java/org/hamcrest/SelfDescribing.java   r287
1 package org.hamcrest; 1 package org.hamcrest;
2 2
3 /** 3 /**
4 * The ability of an object to describe itself. 4 * The ability of an object to describe itself.
5 */ 5 */
6 public interface SelfDescribing { 6 public interface SelfDescribing {
7 /** 7 /**
8 * Generates a description of the object. The description may be part of a 8 * Generates a description of the object. The description may be part of a
9 * a description of a larger object of which this is just a component, so it 9 * a description of a larger object of which this is just a component, so it
10 * should be worded appropriately. 10 * should be worded appropriately.
11 * 11 *
12 * @param description 12 * @param description
13 * The description to be built or appended to. 13 * The description to be built or appended to.
14 */ 14 */
15 void describeTo(Description description); 15 void describeTo(Description description);
16 } 16 }
Hosted by Google Code