Changeset 849 for trunk/quest-plugin-mfc/src/main
- Timestamp:
- 09/21/12 14:21:00 (12 years ago)
- Location:
- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/EventGenerator.java
r837 r849 31 31 /** 32 32 * <p> 33 * Translates sequences of windows messages into {@link WindowsEvent}s that can be used by the33 * Translates sequences of windows messages into {@link Event}s that can be used by the 34 34 * QUEST core libraries. 35 35 * </p> … … 124 124 /** 125 125 * <p> 126 * Tries to match the rules to the given sequence to generate an {@link WindowsEvent}.126 * Tries to match the rules to the given sequence to generate an {@link Event}. 127 127 * </p> 128 128 * <p> -
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/ReplayWindowsMessage.java
r837 r849 48 48 /** 49 49 * <p> 50 * Constructor. Creates a new message with a given message type. 51 * </p> 52 * 53 * @param type 54 * type of the message 55 * @param currentMessageParameters 56 * @param target 50 * Constructor. Creates a new replay message with a given {@link WindowsMessage}. 51 * </p> 52 * 53 * @param replayedMessage 54 * message from which the replay is generated 57 55 */ 58 56 public ReplayWindowsMessage(WindowsMessage replayedMessage) … … 84 82 /** 85 83 * <p> 86 * Two {@link ReplayWindowsMessage} are equal, if their {@link #type}, {@link # xmlWindowDescription},84 * Two {@link ReplayWindowsMessage} are equal, if their {@link #type}, {@link #getTargetXML}, 87 85 * and {@link #params} are equal. 88 86 * </p> -
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java
r837 r849 72 72 /** 73 73 * <p> 74 * Constructor. Creates a new message with a given message type.74 * Constructor. Creates a new message with a given message's type, target, and parameters. 75 75 * </p> 76 76 * 77 77 * @param type 78 78 * type of the message 79 * @param currentMessageParameters80 79 * @param target 80 * target of the message 81 * @param messageParameters 82 * parameters of the message 81 83 */ 82 84 public WindowsMessage(WindowsMessageType type, … … 175 177 /** 176 178 * <p> 177 * Two {@link WindowsMessage} are equal, if their {@link #type}, {@link # xmlWindowDescription},179 * Two {@link WindowsMessage} are equal, if their {@link #type}, {@link #getTargetXML}, 178 180 * and {@link #params} are equal. 179 181 * </p>
Note: See TracChangeset
for help on using the changeset viewer.