Index: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEvent.java
===================================================================
--- trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEvent.java	(revision 548)
+++ trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEvent.java	(revision 559)
@@ -1,2 +1,3 @@
+
 package de.ugoe.cs.quest.assertions;
 
Index: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java
===================================================================
--- trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java	(revision 548)
+++ trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java	(revision 559)
@@ -1,2 +1,3 @@
+
 package de.ugoe.cs.quest.assertions;
 
@@ -16,66 +17,65 @@
 public class FileEqualsReplay implements IReplayable {
 
-	/**
-	 * <p>
-	 * The file that should be equal to expectedFile.
-	 * </p>
-	 */
-	protected final String actualFile;
+    /**
+     * <p>
+     * The file that should be equal to expectedFile.
+     * </p>
+     */
+    protected final String actualFile;
 
-	/**
-	 * <p>
-	 * The file that is used as the reference.
-	 * </p>
-	 */
-	protected final String expectedFile;
+    /**
+     * <p>
+     * The file that is used as the reference.
+     * </p>
+     */
+    protected final String expectedFile;
 
-	/**
-	 * <p>
-	 * Id for object serialization.
-	 * </p>
-	 */
-	private static final long serialVersionUID = 1L;
+    /**
+     * <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
-	 *            name and path of the actual file
-	 * @throws InvalidParameterException
-	 *             thrown if expectedFile or actualFile are null
-	 */
-	public FileEqualsReplay(String expectedFile, String actualFile) {
-		if (expectedFile == null) {
-			throw new InvalidParameterException(
-					"expected file must not be null");
-		}
-		if (actualFile == null) {
-			throw new InvalidParameterException("actual file must not be null");
-		}
-		this.expectedFile = expectedFile;
-		this.actualFile = actualFile;
-	}
+    /**
+     * <p>
+     * Constructor. Creates a new FileEqualsReplay.
+     * </p>
+     * 
+     * @param expectedFile
+     *            name and path of the expected file
+     * @param actualFile
+     *            name and path of the actual file
+     * @throws InvalidParameterException
+     *             thrown if expectedFile or actualFile are null
+     */
+    public FileEqualsReplay(String expectedFile, String actualFile) {
+        if (expectedFile == null) {
+            throw new InvalidParameterException("expected file must not be null");
+        }
+        if (actualFile == null) {
+            throw new InvalidParameterException("actual file must not be null");
+        }
+        this.expectedFile = expectedFile;
+        this.actualFile = actualFile;
+    }
 
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see de.ugoe.cs.quest.eventcore.IReplayable#getReplay()
-	 */
-	public String getReplay() {
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.quest.eventcore.IReplayable#getReplay()
+     */
+    public String getReplay() {
 
-		String actualFileTmp = StringTools.xmlEntityReplacement(actualFile);
-		String expectedFileTmp = StringTools.xmlEntityReplacement(expectedFile);
+        String actualFileTmp = StringTools.xmlEntityReplacement(actualFile);
+        String expectedFileTmp = StringTools.xmlEntityReplacement(expectedFile);
 
-		StringBuilder currentMsgStr = new StringBuilder(800);
-		currentMsgStr.append("  <fileEquals ");
-		currentMsgStr.append("actualFile=\"" + actualFileTmp + "\" ");
-		currentMsgStr.append("expectedFile=\"" + expectedFileTmp + "\"/>");
-		currentMsgStr.append(StringTools.ENDLINE);
-		return currentMsgStr.toString();
-	}
+        StringBuilder currentMsgStr = new StringBuilder(800);
+        currentMsgStr.append("  <fileEquals ");
+        currentMsgStr.append("actualFile=\"" + actualFileTmp + "\" ");
+        currentMsgStr.append("expectedFile=\"" + expectedFileTmp + "\"/>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        return currentMsgStr.toString();
+    }
 
 }
Index: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java
===================================================================
--- trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java	(revision 548)
+++ trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java	(revision 559)
@@ -1,2 +1,3 @@
+
 package de.ugoe.cs.quest.assertions;
 
Index: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java
===================================================================
--- trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java	(revision 548)
+++ trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java	(revision 559)
@@ -1,2 +1,3 @@
+
 package de.ugoe.cs.quest.assertions;
 
@@ -16,79 +17,78 @@
 public class TextEqualsReplay implements IReplayable {
 
-	/**
-	 * <p>
-	 * Reference value which is compared to the targets text.
-	 * </p>
-	 */
-	protected final String expectedValue;
+    /**
+     * <p>
+     * Reference value which is compared to the targets text.
+     * </p>
+     */
+    protected final String expectedValue;
 
-	/**
-	 * <p>
-	 * Target to which the text is compared.
-	 * </p>
-	 */
-	protected final String target;
+    /**
+     * <p>
+     * Target to which the text is compared.
+     * </p>
+     */
+    protected final String target;
 
-	/**
-	 * <p>
-	 * Id for object serialization.
-	 * </p>
-	 */
-	private static final long serialVersionUID = 1L;
+    /**
+     * <p>
+     * Id for object serialization.
+     * </p>
+     */
+    private static final long serialVersionUID = 1L;
 
-	/**
-	 * <p>
-	 * Constructor. Creates a new TextEqualsReplay.
-	 * 
-	 * @param expectedValue
-	 *            expected string value
-	 * @param target
-	 *            string description of the target whose string value is
-	 *            compared to the expected value
-	 * @throws InvalidParameterException
-	 *             thrown if target is null
-	 */
-	public TextEqualsReplay(String expectedValue, String target) {
-		if (target == null) {
-			throw new InvalidParameterException("target must not be null");
-		}
-		this.expectedValue = expectedValue;
-		this.target = target;
-	}
+    /**
+     * <p>
+     * Constructor. Creates a new TextEqualsReplay.
+     * 
+     * @param expectedValue
+     *            expected string value
+     * @param target
+     *            string description of the target whose string value is compared to the expected
+     *            value
+     * @throws InvalidParameterException
+     *             thrown if target is null
+     */
+    public TextEqualsReplay(String expectedValue, String target) {
+        if (target == null) {
+            throw new InvalidParameterException("target must not be null");
+        }
+        this.expectedValue = expectedValue;
+        this.target = target;
+    }
 
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see de.ugoe.cs.quest.eventcore.IReplayable#getReplay()
-	 */
-	@Override
-	public String getReplay() {
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.quest.eventcore.IReplayable#getReplay()
+     */
+    @Override
+    public String getReplay() {
 
-		String expectedValueTmp = StringTools.xmlEntityReplacement(expectedValue);
+        String expectedValueTmp = StringTools.xmlEntityReplacement(expectedValue);
 
-		StringBuilder currentMsgStr = new StringBuilder(400);
-		currentMsgStr.append(" <textEquals expectedValue=\"" + expectedValueTmp
-				+ "\">");
-		currentMsgStr.append(StringTools.ENDLINE);
-		currentMsgStr.append("<target>");
-		currentMsgStr.append(StringTools.ENDLINE);
-		currentMsgStr.append(target);
-		currentMsgStr.append(StringTools.ENDLINE);
-		currentMsgStr.append("</target>");
-		currentMsgStr.append(StringTools.ENDLINE);
-		currentMsgStr.append("</textEquals>");
-		currentMsgStr.append(StringTools.ENDLINE);
-		return currentMsgStr.toString();
-	}
+        StringBuilder currentMsgStr = new StringBuilder(400);
+        currentMsgStr.append(" <textEquals expectedValue=\"" + expectedValueTmp + "\">");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("<target>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append(target);
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("</target>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("</textEquals>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        return currentMsgStr.toString();
+    }
 
-	/*
-	 * (non-Javadoc)
-	 * 
-	 * @see de.ugoe.cs.quest.eventcore.IReplayable#getTarget()
-	 */
-	//@Override TODO
-	public String getTarget() {
-		return target;
-	}
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.quest.eventcore.IReplayable#getTarget()
+     */
+    // @Override TODO
+    public String getTarget() {
+        return target;
+    }
 
 }
