summaryrefslogtreecommitdiffstats
path: root/hamcrest-core/src/org/hamcrest/SelfDescribing.java
diff options
context:
space:
mode:
Diffstat (limited to 'hamcrest-core/src/org/hamcrest/SelfDescribing.java')
-rw-r--r--hamcrest-core/src/org/hamcrest/SelfDescribing.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/hamcrest-core/src/org/hamcrest/SelfDescribing.java b/hamcrest-core/src/org/hamcrest/SelfDescribing.java
new file mode 100644
index 0000000..cd53070
--- /dev/null
+++ b/hamcrest-core/src/org/hamcrest/SelfDescribing.java
@@ -0,0 +1,16 @@
+package org.hamcrest;
+
+/**
+ * The ability of an object to describe itself.
+ */
+public interface SelfDescribing {
+ /**
+ * Generates a description of the object. The description may be part of a
+ * a description of a larger object of which this is just a component, so it
+ * should be worded appropriately.
+ *
+ * @param description
+ * The description to be built or appended to.
+ */
+ void describeTo(Description description);
+} \ No newline at end of file