Index: trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java
===================================================================
--- trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java	(revision 223)
+++ trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/FileEqualsReplay.java	(revision 229)
@@ -6,11 +6,9 @@
 /**
  * <p>
- * This class defines the fileEquals assertion type. This type does have two
- * parameters, actualFile and expectedFile.
+ * This class defines the replay for file equals assertions.
  * </p>
  * 
- * @author jeffrey.hall
- * @version 1.0
- * 
+ * @author Jeffrey Hall, Steffen Herbold
+ * @version 2.0
  */
 public class FileEqualsReplay implements IReplayable {
@@ -27,27 +25,29 @@
 
 	/**
+	 * <p>
 	 * Id for object serialization.
+	 * </p>
 	 */
 	private static final long serialVersionUID = 1L;
 
 	/**
+	 * <p>
+	 * Constructor. Creates a new FileEqualsReplay.
+	 * </p>
 	 * 
+	 * @param expectedFile
+	 *            name and path of the expected file
 	 * @param actualFile
-	 *            The file that should be equal to expectedFile.
+	 *            name and path of the actual file
 	 */
-	public void setActualFile(String actualFile) {
+	public FileEqualsReplay(String expectedFile, String actualFile) {
+		this.expectedFile = expectedFile;
 		this.actualFile = actualFile;
 	}
 
-	/**
-	 * @param exptectedFile
-	 *            The file that is used as the reference.
-	 */
-	public void setExpectedFile(String expectedFile) {
-		this.expectedFile = expectedFile;
-	}
-
-	/**
-	 * Returns the string that has to be written to the replay file.
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.eventbench.data.IReplayable#getReplay()
 	 */
 	public String getReplay() {
@@ -64,7 +64,10 @@
 	}
 
-	/**
-	 * No target used by fileEquals.
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.eventbench.data.IReplayable#getTarget()
 	 */
+	@Override
 	public String getTarget() {
 		return "targetNotUsed";
Index: trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/TextEqualsReplay.java
===================================================================
--- trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/TextEqualsReplay.java	(revision 223)
+++ trunk/EventBenchCore/src/de/ugoe/cs/eventbench/assertions/TextEqualsReplay.java	(revision 229)
@@ -6,48 +6,44 @@
 /**
  * <p>
- * This class defines the textEquals assertion type. This type does have two
- * parameters, expectedValue and target.
+ * This class defines the replay for a textEquals assertion.
  * </p>
  * 
- * @author jeffrey.hall
- * @version 1.0
- * 
+ * @author Jeffrey Hall, Steffen Herbold
+ * @version 2.0
  */
 public class TextEqualsReplay implements IReplayable {
 
 	/**
-	 * The reference value which is compared to the targets text.
+	 * <p>
+	 * Reference value which is compared to the targets text.
+	 * </p>
 	 */
-	private String expectedValue = null;
+	private String expectedValue;
 
 	/**
-	 * The window which text is compared to expectedValue.
+	 * <p>
+	 * Target to which the text is compared.
+	 * </p>
 	 */
-	private String target = null;
+	private String target;
 
 	/**
+	 * <p>
 	 * Id for object serialization.
+	 * </p>
 	 */
 	private static final long serialVersionUID = 1L;
 
-	/**
-	 * @param expectedValue
-	 *            The reference value which is compared to the targets text.
-	 */
-	public void setExpectedValue(String expectedValue) {
+	public TextEqualsReplay(String expectedValue, String target) {
 		this.expectedValue = expectedValue;
-	}
-
-	/**
-	 * @param target
-	 *            The window which text is compared to expectedValue.
-	 */
-	public void setTarget(String target) {
 		this.target = target;
 	}
 
-	/**
-	 * Returns the string that has to be written to the replay file.
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.eventbench.data.IReplayable#getReplay()
 	 */
+	@Override
 	public String getReplay() {
 
@@ -69,7 +65,10 @@
 	}
 
-	/**
-	 * Returns the target window.
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.eventbench.data.IReplayable#getTarget()
 	 */
+	@Override
 	public String getTarget() {
 		return target;
