Index: trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/QuestPlugin.java
===================================================================
--- trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/QuestPlugin.java	(revision 848)
+++ trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/QuestPlugin.java	(revision 849)
@@ -18,5 +18,5 @@
 	 * </p>
 	 * 
-	 * @return
+	 * @return the title
 	 */
 	public String getTitle();
@@ -32,5 +32,5 @@
 	 * </p>
 	 * 
-	 * @return
+	 * @return the command packages
 	 */
 	public List<String> getCommandPackages();
Index: trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java
===================================================================
--- trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java	(revision 848)
+++ trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java	(revision 849)
@@ -34,6 +34,5 @@
 	 * Generates a {@link FirstOrderMarkovModel} from an EFG. In the generated
 	 * model, all following events are equally possible, i.e., the model is
-	 * equal to a {@link DeterministicFiniteAutomaton}. However, through further
-	 * training (e.g., {@link CMDupdateModel}) this can be changed.
+	 * equal to a {@link DeterministicFiniteAutomaton}. 
 	 * </p>
 	 * 
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java	(revision 848)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/guimodel/JFCGUIElementSpec.java	(revision 849)
@@ -287,5 +287,5 @@
      * </p>
      * 
-     * @param name
+     * @param newName
      *            the name
      */
@@ -305,6 +305,6 @@
      * </p>
      * 
-     * @param title
-     *            the title
+     * @param type
+     *            the type
      */
     public void setType(String type) {
@@ -341,6 +341,6 @@
      * </p>
      * 
-     * @param elementHash
-     *            the elementHash
+     * @param newElementHash
+     *            the element hash
      */
     public void setElementHash(int newElementHash) {
Index: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/EventGenerator.java
===================================================================
--- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/EventGenerator.java	(revision 848)
+++ trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/EventGenerator.java	(revision 849)
@@ -31,5 +31,5 @@
 /**
  * <p>
- * Translates sequences of windows messages into {@link WindowsEvent}s that can be used by the
+ * Translates sequences of windows messages into {@link Event}s that can be used by the
  * QUEST core libraries.
  * </p>
@@ -124,5 +124,5 @@
     /**
      * <p>
-     * Tries to match the rules to the given sequence to generate an {@link WindowsEvent}.
+     * Tries to match the rules to the given sequence to generate an {@link Event}.
      * </p>
      * <p>
Index: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/ReplayWindowsMessage.java
===================================================================
--- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/ReplayWindowsMessage.java	(revision 848)
+++ trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/ReplayWindowsMessage.java	(revision 849)
@@ -48,11 +48,9 @@
     /**
      * <p>
-     * Constructor. Creates a new message with a given message type.
-     * </p>
-     * 
-     * @param type
-     *            type of the message
-     * @param currentMessageParameters 
-     * @param target 
+     * Constructor. Creates a new replay message with a given {@link WindowsMessage}.
+     * </p>
+     * 
+     * @param replayedMessage
+     *            message from which the replay is generated
      */
     public ReplayWindowsMessage(WindowsMessage replayedMessage)
@@ -84,5 +82,5 @@
     /**
      * <p>
-     * Two {@link ReplayWindowsMessage} are equal, if their {@link #type}, {@link #xmlWindowDescription},
+     * Two {@link ReplayWindowsMessage} are equal, if their {@link #type}, {@link #getTargetXML},
      * and {@link #params} are equal.
      * </p>
Index: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java
===================================================================
--- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java	(revision 848)
+++ trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java	(revision 849)
@@ -72,11 +72,13 @@
     /**
      * <p>
-     * Constructor. Creates a new message with a given message type.
+     * Constructor. Creates a new message with a given message's type, target, and parameters.
      * </p>
      * 
      * @param type
      *            type of the message
-     * @param currentMessageParameters
      * @param target
+     *            target of the message
+     * @param messageParameters
+     *            parameters of the message
      */
     public WindowsMessage(WindowsMessageType type,
@@ -175,5 +177,5 @@
     /**
      * <p>
-     * Two {@link WindowsMessage} are equal, if their {@link #type}, {@link #xmlWindowDescription},
+     * Two {@link WindowsMessage} are equal, if their {@link #type}, {@link #getTargetXML},
      * and {@link #params} are equal.
      * </p>
Index: trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java
===================================================================
--- trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java	(revision 848)
+++ trunk/quest-ui-swt/src/main/java/de/ugoe/cs/quest/ui/swt/ShowGuiModelDialog.java	(revision 849)
@@ -23,12 +23,4 @@
 import org.eclipse.swt.widgets.Label;
 
-/**
- * <p>
- * TODO comment
- * </p>
- * 
- * @version $Revision: $ $Date: Aug 28, 2012$
- * @author 2012, last modified by $Author: sherbold$
- */
 public class ShowGuiModelDialog extends Dialog {
 
@@ -38,10 +30,4 @@
     protected GUIModel model;
 
-    /**
-     * Create the dialog.
-     * 
-     * @param parent
-     * @param style
-     */
     public ShowGuiModelDialog(Shell parent, int style, GUIModel model, String modelName) {
         super(parent, style);
@@ -50,9 +36,4 @@
     }
 
-    /**
-     * Open the dialog.
-     * 
-     * @return the result
-     */
     public void open() {
         createContents();
@@ -67,7 +48,4 @@
     }
 
-    /**
-     * Create contents of the dialog.
-     */
     private void createContents() {
         shell = new Shell(getParent(), SWT.SHELL_TRIM | SWT.BORDER | SWT.APPLICATION_MODAL);
