- Timestamp:
- 09/21/12 14:21:00 (12 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/QuestPlugin.java
r772 r849 18 18 * </p> 19 19 * 20 * @return 20 * @return the title 21 21 */ 22 22 public String getTitle(); … … 32 32 * </p> 33 33 * 34 * @return 34 * @return the command packages 35 35 */ 36 36 public List<String> getCommandPackages(); -
trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java
r671 r849 34 34 * Generates a {@link FirstOrderMarkovModel} from an EFG. In the generated 35 35 * model, all following events are equally possible, i.e., the model is 36 * equal to a {@link DeterministicFiniteAutomaton}. However, through further 37 * training (e.g., {@link CMDupdateModel}) this can be changed. 36 * equal to a {@link DeterministicFiniteAutomaton}. 38 37 * </p> 39 38 * -
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java
r835 r849 287 287 * </p> 288 288 * 289 * @param n ame289 * @param newName 290 290 * the name 291 291 */ … … 305 305 * </p> 306 306 * 307 * @param t itle308 * the t itle307 * @param type 308 * the type 309 309 */ 310 310 public void setType(String type) { … … 341 341 * </p> 342 342 * 343 * @param elementHash344 * the element Hash343 * @param newElementHash 344 * the element hash 345 345 */ 346 346 public void setElementHash(int newElementHash) { -
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> -
trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java
r847 r849 23 23 import org.eclipse.swt.widgets.Label; 24 24 25 /**26 * <p>27 * TODO comment28 * </p>29 *30 * @version $Revision: $ $Date: Aug 28, 2012$31 * @author 2012, last modified by $Author: sherbold$32 */33 25 public class ShowGuiModelDialog extends Dialog { 34 26 … … 38 30 protected GUIModel model; 39 31 40 /**41 * Create the dialog.42 *43 * @param parent44 * @param style45 */46 32 public ShowGuiModelDialog(Shell parent, int style, GUIModel model, String modelName) { 47 33 super(parent, style); … … 50 36 } 51 37 52 /**53 * Open the dialog.54 *55 * @return the result56 */57 38 public void open() { 58 39 createContents(); … … 67 48 } 68 49 69 /**70 * Create contents of the dialog.71 */72 50 private void createContents() { 73 51 shell = new Shell(getParent(), SWT.SHELL_TRIM | SWT.BORDER | SWT.APPLICATION_MODAL);
Note: See TracChangeset
for help on using the changeset viewer.