Changeset 849


Ignore:
Timestamp:
09/21/12 14:21:00 (12 years ago)
Author:
sherbold
Message:
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  
    1818         * </p> 
    1919         *  
    20          * @return 
     20         * @return the title 
    2121         */ 
    2222        public String getTitle(); 
     
    3232         * </p> 
    3333         *  
    34          * @return 
     34         * @return the command packages 
    3535         */ 
    3636        public List<String> getCommandPackages(); 
  • trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java

    r671 r849  
    3434         * Generates a {@link FirstOrderMarkovModel} from an EFG. In the generated 
    3535         * 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}.  
    3837         * </p> 
    3938         *  
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java

    r835 r849  
    287287     * </p> 
    288288     *  
    289      * @param name 
     289     * @param newName 
    290290     *            the name 
    291291     */ 
     
    305305     * </p> 
    306306     *  
    307      * @param title 
    308      *            the title 
     307     * @param type 
     308     *            the type 
    309309     */ 
    310310    public void setType(String type) { 
     
    341341     * </p> 
    342342     *  
    343      * @param elementHash 
    344      *            the elementHash 
     343     * @param newElementHash 
     344     *            the element hash 
    345345     */ 
    346346    public void setElementHash(int newElementHash) { 
  • trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/EventGenerator.java

    r837 r849  
    3131/** 
    3232 * <p> 
    33  * Translates sequences of windows messages into {@link WindowsEvent}s that can be used by the 
     33 * Translates sequences of windows messages into {@link Event}s that can be used by the 
    3434 * QUEST core libraries. 
    3535 * </p> 
     
    124124    /** 
    125125     * <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}. 
    127127     * </p> 
    128128     * <p> 
  • trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/ReplayWindowsMessage.java

    r837 r849  
    4848    /** 
    4949     * <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 
    5755     */ 
    5856    public ReplayWindowsMessage(WindowsMessage replayedMessage) 
     
    8482    /** 
    8583     * <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}, 
    8785     * and {@link #params} are equal. 
    8886     * </p> 
  • trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java

    r837 r849  
    7272    /** 
    7373     * <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. 
    7575     * </p> 
    7676     *  
    7777     * @param type 
    7878     *            type of the message 
    79      * @param currentMessageParameters 
    8079     * @param target 
     80     *            target of the message 
     81     * @param messageParameters 
     82     *            parameters of the message 
    8183     */ 
    8284    public WindowsMessage(WindowsMessageType type, 
     
    175177    /** 
    176178     * <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}, 
    178180     * and {@link #params} are equal. 
    179181     * </p> 
  • trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java

    r847 r849  
    2323import org.eclipse.swt.widgets.Label; 
    2424 
    25 /** 
    26  * <p> 
    27  * TODO comment 
    28  * </p> 
    29  *  
    30  * @version $Revision: $ $Date: Aug 28, 2012$ 
    31  * @author 2012, last modified by $Author: sherbold$ 
    32  */ 
    3325public class ShowGuiModelDialog extends Dialog { 
    3426 
     
    3830    protected GUIModel model; 
    3931 
    40     /** 
    41      * Create the dialog. 
    42      *  
    43      * @param parent 
    44      * @param style 
    45      */ 
    4632    public ShowGuiModelDialog(Shell parent, int style, GUIModel model, String modelName) { 
    4733        super(parent, style); 
     
    5036    } 
    5137 
    52     /** 
    53      * Open the dialog. 
    54      *  
    55      * @return the result 
    56      */ 
    5738    public void open() { 
    5839        createContents(); 
     
    6748    } 
    6849 
    69     /** 
    70      * Create contents of the dialog. 
    71      */ 
    7250    private void createContents() { 
    7351        shell = new Shell(getParent(), SWT.SHELL_TRIM | SWT.BORDER | SWT.APPLICATION_MODAL); 
Note: See TracChangeset for help on using the changeset viewer.