Changeset 779 for trunk/quest-core-assertions
- Timestamp:
- 09/06/12 12:05:18 (12 years ago)
- Location:
- trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEventType.java
r656 r779 1 1 2 package de.ugoe.cs.quest.assertions; 2 3 … … 4 5 5 6 /** 6 *7 7 * <p> 8 * TODO comment8 * Event type for FileEquals assertions. 9 9 * </p> 10 10 * 11 * @version $Revision: $ $Date: Aug 16, 2012$12 * @author 2012, last modified by $Author: sherbold$11 * @version 1.0 12 * @author Steffen Herbold 13 13 */ 14 14 public class FileEqualsAssertEventType implements IEventType { 15 15 16 /** */ 16 /** 17 * <p> 18 * Id for object serialization. 19 * </p> 20 */ 17 21 private static final long serialVersionUID = 1L; 18 22 23 /* 24 * (non-Javadoc) 25 * 26 * @see de.ugoe.cs.quest.eventcore.IEventType#getName() 27 */ 19 28 @Override 20 29 public String getName() { -
trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java
r655 r779 1 1 2 package de.ugoe.cs.quest.assertions; 2 3 … … 4 5 5 6 /** 7 * </p> Event type for TextEquals assertions. </p> 6 8 * 7 * <p> 8 * TODO comment 9 * </p> 10 * 11 * @version $Revision: $ $Date: Aug 16, 2012$ 12 * @author 2012, last modified by $Author: sherbold$ 9 * @version 1.0 10 * @author Steffen Herbold 13 11 */ 14 12 public class TextEqualsAssertEventType implements IEventType { 15 13 16 /** */ 14 /** 15 * <p> 16 * Id for object serialization. 17 * </p> 18 */ 17 19 private static final long serialVersionUID = 1L; 18 20 21 /* 22 * (non-Javadoc) 23 * 24 * @see de.ugoe.cs.quest.eventcore.IEventType#getName() 25 */ 19 26 @Override 20 27 public String getName() { -
trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java
r766 r779 83 83 * (non-Javadoc) 84 84 * 85 * @see de.ugoe.cs.quest.eventcore.IReplayable#getTarget()86 */87 // @Override TODO88 public String getTarget() {89 return target;90 }91 92 /*93 * (non-Javadoc)94 *95 85 * @see de.ugoe.cs.quest.eventcore.IReplayable#getDecorator() 96 86 */
Note: See TracChangeset
for help on using the changeset viewer.