source: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEventType.java @ 779

Last change on this file since 779 was 779, checked in by sherbold, 12 years ago
  • code documentation
  • Property svn:mime-type set to text/plain
File size: 585 bytes
Line 
1
2package de.ugoe.cs.quest.assertions;
3
4import de.ugoe.cs.quest.eventcore.IEventType;
5
6/**
7 * <p>
8 * Event type for FileEquals assertions.
9 * </p>
10 *
11 * @version 1.0
12 * @author Steffen Herbold
13 */
14public class FileEqualsAssertEventType implements IEventType {
15
16    /**
17     * <p>
18     * Id for object serialization.
19     * </p>
20     */
21    private static final long serialVersionUID = 1L;
22
23    /*
24     * (non-Javadoc)
25     *
26     * @see de.ugoe.cs.quest.eventcore.IEventType#getName()
27     */
28    @Override
29    public String getName() {
30        return "FileEqualsAssertion";
31    }
32
33}
Note: See TracBrowser for help on using the repository browser.