Index: /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java
===================================================================
--- /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java	(revision 2217)
+++ /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java	(revision 2218)
@@ -18,5 +18,5 @@
 
 /**
- * </p> Event type for TextEquals assertions. </p>
+ * <p> Event type for TextEquals assertions. </p>
  * 
  * @version 1.0
Index: /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorObserved.java
===================================================================
--- /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorObserved.java	(revision 2217)
+++ /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorObserved.java	(revision 2218)
@@ -81,5 +81,5 @@
      *            sequences for which the coverage is calculated; must not be null
      * @param length
-     *            length of the subsequences for which the coverage is analyzed; must be >0
+     *            length of the subsequences for which the coverage is analyzed; must be &gt;0
      * @throws IllegalArgumentException
      *             thrown if observedSequences or sequences is null or length less than or equal to
Index: /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorProcess.java
===================================================================
--- /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorProcess.java	(revision 2217)
+++ /trunk/autoquest-core-coverage/src/main/java/de/ugoe/cs/autoquest/coverage/CoverageCalculatorProcess.java	(revision 2218)
@@ -86,5 +86,5 @@
      *            sequences for which the coverage is calculated; must not be null
      * @param length
-     *            length of the subsequences for which the coverage is analyzed; must be >0
+     *            length of the subsequences for which the coverage is analyzed; must be &gt;0
      * @throws IllegalArgumentException
      *             thrown if process or sequences is null or length less than or equal to 0
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/Event.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/Event.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/Event.java	(revision 2218)
@@ -30,6 +30,4 @@
  * @version 1.0
  * 
- * @param <T>
- *            Can be used to declare that events belong to a specific platform without subclassing.
  */
 public final class Event implements Serializable {
@@ -86,5 +84,5 @@
      * <p>
      * List of {@link IReplayable}s of type T that describes the replay of an event. The
-     * {@link IReplayable}s can be interpreted as <it>sub-events</it> on the platform level that
+     * {@link IReplayable}s can be interpreted as sub-events on the platform level that
      * make up the abstract event.
      * </p>
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/HierarchicalEventTargetTree.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/HierarchicalEventTargetTree.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/HierarchicalEventTargetTree.java	(revision 2218)
@@ -25,11 +25,11 @@
 /**
  * <p>
- * This class provides the interfaces for GUI element trees.
+ * This class provides the interfaces for hierarchical event target trees.
  * </p>
  * <p>
- * The GUIElementTree represents the hierarchical structure of the GUI elements "as it is"
- * currently during a session. It may change during the session due to creation and destruction
- * of GUI elements. The parameter T represents the id type of the GUI elements that are handled
- * internally.
+ * The HierarchicalEventTargetTree represents the hierarchical structure of the event targets
+ * "as it is" currently during a session. It may change during the session due to creation and
+ * destruction of event targets. The parameter ID represents the id type of the event targets
+ * that are handled internally. The other type parameters specify the concrete target type.
  * </p>
  * 
@@ -44,6 +44,6 @@
     /**
      * <p>
-     * Map of all GUI elements that are part of the tree for efficient searching. The keys of the
-     * map are the ids of the GUI elements.
+     * Map of all event targets that are part of the tree for efficient searching. The keys of the
+     * map are the ids of the event targets.
      * </p>
      */
@@ -52,6 +52,6 @@
     /**
      * <p>
-     * Map of all GUI element specifications that are part of the tree for efficient searching. The
-     * keys of the map are the ids of the GUI elements.
+     * Map of all event target specifications that are part of the tree for efficient searching. The
+     * keys of the map are the ids of the event targets.
      * </p>
      */
@@ -60,6 +60,6 @@
     /**
      * <p>
-     * Map of all children of GUI elements that are part of the tree. The keys of the map are the
-     * ids of the parent GUI elements.
+     * Map of all children of event targets that are part of the tree. The keys of the map are the
+     * ids of the parent event targets.
      * </p>
      */
@@ -68,6 +68,6 @@
     /**
      * <p>
-     * Map of all parents of GUI elements that are part of the tree. The keys of the map are the
-     * ids of the child GUI elements.
+     * Map of all parents of event targets that are part of the tree. The keys of the map are the
+     * ids of the child event targets.
      * </p>
      */
@@ -83,5 +83,5 @@
     /**
      * <p>
-     * the GUI element factory used in the model
+     * the event target factory used in the model
      * </p>
      */
@@ -106,15 +106,15 @@
     /**
      * <p>
-     * Adds a new GUI element to the tree.
+     * Adds a new event target to the tree.
      * </p>
      * 
      * @param eventTargetID
-     *            id of the GUI element to be created
+     *            id of the event target to be created
      * @param parentID
-     *            id of the parent GUI element 
+     *            id of the parent event target 
      * @param eventTargetSpec
-     *            the GUI element specification
+     *            the event target specification
      *            
-     * @throws EventTargetModelException if the GUI element can not be added to the underlying GUI model
+     * @throws EventTargetModelException if the event target can not be added to the underlying GUI model
      */
     public void add(ID               eventTargetID,
@@ -159,5 +159,5 @@
     /**
      * <p>
-     * Searches the tree for a GUI element with the specified id and returns its
+     * Searches the tree for a event target with the specified id and returns its
      * {@link IGUIElement} .
      * </p>
@@ -165,5 +165,5 @@
      * @param id
      *            id that is looked for
-     * @return {@link IGUIElementSpec} of the GUI element with the given id if found, null otherwise
+     * @return {@link IEventTargetSpec} of the event target with the given id if found, null otherwise
      */
     public TARGET_TYPE find(ID id) {
@@ -173,11 +173,11 @@
     /**
      * <p>
-     * Returns the id of the provided {@link IGUIElement}. The comparison is performed using the
-     * equals method of the GUI element.
+     * Returns the id of the provided {@link IHierachicalEventTarget}. The comparison is performed using the
+     * equals method of the event target.
      * </p>
      * 
      * @param eventTarget
      *            guiElement that is looked for
-     * @return the id of the GUI element, null if the GUI element can not be found
+     * @return the id of the event target, null if the event target can not be found
      */
     public ID find(TARGET_TYPE eventTarget) {
@@ -193,11 +193,11 @@
     /**
      * <p>
-     * Removes a GUI element (defined by its id) from the tree. All children of the GUI element will be
+     * Removes a event target (defined by its id) from the tree. All children of the event target will be
      * removed recursively.
      * </p>
      * 
      * @param id
-     *            id of the GUI element to be removed
-     * @return number of GUI elements that were removed
+     *            id of the event target to be removed
+     * @return number of event targets that were removed
      */
     public int remove(ID id) {
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/IReplayable.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/IReplayable.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/IReplayable.java	(revision 2218)
@@ -21,5 +21,5 @@
 /**
  * <p>
- * This interface is used by {@link ReplayableEvent}to describe how events can
+ * This interface is used by replayable events to describe how events can
  * be replayed. It can be used to define a sequence of fine-grained platform
  * events that make up an abstract event.
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/gui/KeyInteractionCorrector.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/gui/KeyInteractionCorrector.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/gui/KeyInteractionCorrector.java	(revision 2218)
@@ -30,4 +30,5 @@
  * This class provides the functionality to sort and clean up all key interactions in a log. In
  * particular:
+ * </p>
  * <ol>
  * <li>In case a combination key (e.g., shift, alt, control) is held down, multiple
@@ -48,5 +49,4 @@
  * events for all combination keys.</li>
  * </ol>
- * </p>
  * 
  * @version 1.0
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementGroup.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementGroup.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementGroup.java	(revision 2218)
@@ -41,7 +41,7 @@
      * </p>
      *
-     * @param groupName        the name of the GUI element group
-     * @param parent           the optional parent GUI element of the group
-     * @param eventTargetModel the GUI model to which the group will belong
+     * @param groupName  the name of the GUI element group
+     * @param parent     the optional parent GUI element of the group
+     * @param guiModel   the GUI model to which the group will belong
      */
     public GUIElementGroup(String      groupName,
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIModel.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIModel.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIModel.java	(revision 2218)
@@ -22,5 +22,5 @@
 /**
  * <p>
- * A GUI model is a tree of {@link IGUIElements} and represents a complete GUI of a software. It is
+ * A GUI model is a tree of {@link IGUIElement}s and represents a complete GUI of a software. It is
  * platform independent. It may have several root nodes, as some GUIs are made up of several Frames
  * being independent from each other. The GUI model is filled using the
Index: /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/IGUIElement.java
===================================================================
--- /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/IGUIElement.java	(revision 2217)
+++ /trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/IGUIElement.java	(revision 2218)
@@ -107,5 +107,5 @@
      * </p>
      * 
-     * @param guiElement
+     * @param otherElement
      *            the GUI element to measure the distance for
      */
Index: /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEquality.java
===================================================================
--- /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEquality.java	(revision 2217)
+++ /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEquality.java	(revision 2218)
@@ -19,4 +19,5 @@
  * A task equality denotes, how equal two tasks are. There are different equality levels
  * which are similar to the usual design levels of GUI design. These levels are
+ * </p>
  * <ul>
  *   <li>conceptual design: defines the concepts to be edited using a GUI</li>
@@ -26,4 +27,5 @@
  *       can be performed</li>
  * </ul>
+ * <p>
  * It is not possible to compare two tasks conceptually. But the other design levels can be
  * identified and compared.
Index: /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEqualityRuleManager.java
===================================================================
--- /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEqualityRuleManager.java	(revision 2217)
+++ /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/taskequality/TaskEqualityRuleManager.java	(revision 2218)
@@ -92,6 +92,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public TaskEquality compare(ITask task1, ITask task2)
@@ -132,6 +131,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areAtLeastEqual(ITask task1, ITask task2, TaskEquality equalityLevel) {
@@ -168,6 +166,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areIdentical(ITask task1, ITask task2) {
@@ -197,6 +194,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areLexicallyEqual(ITask task1, ITask task2) {
@@ -226,6 +222,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areSyntacticallyEqual(ITask task1, ITask task2) {
@@ -255,6 +250,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areSemanticallyEqual(ITask task1, ITask task2) {
@@ -285,6 +279,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public TaskEquality compare(ITaskInstance instance1, ITaskInstance instance2)
@@ -325,6 +318,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areAtLeastEqual(ITaskInstance        instance1,
@@ -364,6 +356,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areIdentical(ITaskInstance instance1, ITaskInstance instance2) {
@@ -395,6 +386,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areLexicallyEqual(ITaskInstance instance1, ITaskInstance instance2) {
@@ -426,6 +416,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areSyntacticallyEqual(ITaskInstance instance1, ITaskInstance instance2) {
@@ -457,6 +446,5 @@
      * @return as described
      * 
-     * @throws IllegalStateException in the case, the {@link #init()} method was not called on the
-     *                               manager before a call to this method.
+     * @throws IllegalStateException in the case, the object is not correctly initialized
      */
     public boolean areSemanticallyEqual(ITaskInstance instance1, ITaskInstance instance2) {
Index: /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TaskSymbolBucketedMap.java
===================================================================
--- /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TaskSymbolBucketedMap.java	(revision 2217)
+++ /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TaskSymbolBucketedMap.java	(revision 2218)
@@ -54,5 +54,5 @@
  * </p>
  * 
- * @see SymbolComparator
+ * @see TaskComparator
  * 
  * @author Patrick Harms
Index: /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TemporalRelationshipRuleManager.java
===================================================================
--- /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TemporalRelationshipRuleManager.java	(revision 2217)
+++ /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/TemporalRelationshipRuleManager.java	(revision 2218)
@@ -40,7 +40,8 @@
  * </p>
  * <p>The class holds references to the appropriate {@link ITaskInstanceScopeRule}s and calls
- * their {@link ITaskInstanceScopeRule#apply(ITask, ITaskBuilder, ITaskFactory, boolean)}
+ * their {@link ITaskInstanceScopeRule#apply(de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskInstance)}
  * method for each task in the task tree it is needed for. The general behavior of this class is
  * the following:
+ * </p>
  * <ol>
  *   <li>
@@ -49,5 +50,5 @@
  *   </li>
  *   <li>
- *     then the {@link #applyRules(ITask, ITaskBuilder, ITaskFactory, boolean)}
+ *     then the {@link #applyTaskDetectionRule(List, TaskEquality, int)}
  *     method is called for a so far unstructured task
  *   </li>
@@ -77,4 +78,5 @@
  *   </li>
  * </ol>
+ * <p>
  * Through this, all rules are tried to be applied at least once to the provided parent task and
  * all parent tasks created during the rule application.
Index: /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/ITaskBuilder.java
===================================================================
--- /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/ITaskBuilder.java	(revision 2217)
+++ /trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/ITaskBuilder.java	(revision 2218)
@@ -252,6 +252,4 @@
      * @param oldChild the child to replace
      * @param newChild the replacement for the child
-     * 
-     * @throws as described
      */
     void replaceChild(ISelection parent, ITask oldChild, ITask newChild);
Index: /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/DrawFromAllSequencesGenerator.java
===================================================================
--- /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/DrawFromAllSequencesGenerator.java	(revision 2217)
+++ /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/DrawFromAllSequencesGenerator.java	(revision 2218)
@@ -81,4 +81,5 @@
      * Constructor. Creates a new DrawFromAllSequencesGenerator and ensures the validity of the
      * parameters:
+     * </p>
      * <ul>
      * <li>numSequences must at least be 1
@@ -86,4 +87,5 @@
      * <li>minLength must be less than or equal to maxLength
      * </ul>
+     * <p>
      * If one of these conditions is violated an {@link IllegalArgumentException} is thrown.
      * </p>
Index: /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/HybridGenerator.java
===================================================================
--- /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/HybridGenerator.java	(revision 2217)
+++ /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/HybridGenerator.java	(revision 2218)
@@ -70,8 +70,10 @@
      * <p>
      * Constructor. Creates a new HybridGenerator and ensures the validity of the parameters:
+     * </p>
      * <ul>
      * <li>numSequences must at least be 1
      * <li>length must be at least 1
      * </ul>
+     * <p>
      * If one of these conditions is violated an {@link IllegalArgumentException} is thrown.
      * </p>
Index: /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/RandomWalkGenerator.java
===================================================================
--- /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/RandomWalkGenerator.java	(revision 2217)
+++ /trunk/autoquest-core-testgeneration/src/main/java/de/ugoe/cs/autoquest/testgeneration/RandomWalkGenerator.java	(revision 2218)
@@ -90,4 +90,5 @@
      * <p>
      * Constructor. Creates a new RandomWalkGenerator and ensures the validity of the parameters:
+     * </p>
      * <ul>
      * <li>numSequences must at least be 1
@@ -96,4 +97,5 @@
      * <li>maxIter must be greater than or equal to numSequences
      * </ul>
+     * <p>
      * If one of these conditions is violated an {@link IllegalArgumentException} is thrown.
      * </p>
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/IStochasticProcess.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/IStochasticProcess.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/IStochasticProcess.java	(revision 2218)
@@ -89,4 +89,5 @@
      * Generates a random sequence of events. The sequence starts with {@link Event#STARTEVENT} and
      * finishes with
+     * </p>
      * <ul>
      * <li>{@link Event#ENDEVENT} if validEnd==true.</li>
@@ -95,5 +96,4 @@
      * is reached and the final event of the sequence must not be {@link Event#ENDEVENT}.</li>
      * </ul>
-     * </p>
      * 
      * @param maxLength
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/InvertedHighOrderMarkovModel.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/InvertedHighOrderMarkovModel.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/InvertedHighOrderMarkovModel.java	(revision 2218)
@@ -58,5 +58,5 @@
      * <p>
      * Calculates the probability of the next Event being symbol based on the order of the Markov
-     * model. The order is defined in the constructor {@link #HighOrderMarkovModel(int, Random)}.
+     * model. The order is defined in the constructor {@link #InvertedHighOrderMarkovModel(int, Random)}.
      * </p>
      * 
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/ModelFlattener.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/ModelFlattener.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/ModelFlattener.java	(revision 2218)
@@ -30,5 +30,5 @@
  * <p>
  * If possible, the normal high-order markov model should be used, as the Events may be broken by
- * the flattener, as, e.g., the information {@link ReplayableEvent}s contain is not preserved.
+ * the flattener, as, e.g., the information replayable events contain is not preserved.
  * </p>
  * 
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolComparator.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolComparator.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolComparator.java	(revision 2218)
@@ -31,5 +31,5 @@
      * symbols as equal. The method must be commutative and transitive, i.e.,
      * <code>equals(symbol1, symbol2) == equals(symbol2, symbol1)</code> and
-     * <code>if (equals(symbol1, symbol2) && equals(symbol2, symbol3)) then
+     * <code>if (equals(symbol1, symbol2) &amp;&amp; equals(symbol2, symbol3)) then
      * equals(symbol1, symbol3)</code>.
      * </p>
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolMap.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolMap.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/SymbolMap.java	(revision 2218)
@@ -37,5 +37,5 @@
  * @author Patrick Harms
  * 
- * @param <T>
+ * @param <K>
  *            Type of the symbols that are stored
  * @param <V>
@@ -104,6 +104,4 @@
      * @param value  the value to associate to the symbol in this map
      * 
-     * @return as described
-     * 
      * @throws IllegalArgumentException if the provided symbol is null
      */
Index: /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/Trie.java
===================================================================
--- /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/Trie.java	(revision 2217)
+++ /trunk/autoquest-core-usageprofiles/src/main/java/de/ugoe/cs/autoquest/usageprofiles/Trie.java	(revision 2218)
@@ -29,5 +29,5 @@
 /**
  * <p>
- * This class implements a <it>trie</it>, i.e., a tree of sequences that represents the occurrence
+ * This class implements a trie, i.e., a tree of sequences that represents the occurrence
  * of subsequences up to a predefined length. This length is the trie order.
  * </p>
Index: /trunk/autoquest-misc/src/main/java/de/ugoe/cs/autoquest/keyboardmaps/VirtualKey.java
===================================================================
--- /trunk/autoquest-misc/src/main/java/de/ugoe/cs/autoquest/keyboardmaps/VirtualKey.java	(revision 2217)
+++ /trunk/autoquest-misc/src/main/java/de/ugoe/cs/autoquest/keyboardmaps/VirtualKey.java	(revision 2218)
@@ -468,5 +468,5 @@
      * </p>
      * 
-     * @param numberString
+     * @param string
      *            String representation of the virtual key
      * @return created VirtualKey
Index: /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java
===================================================================
--- /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java	(revision 2217)
+++ /trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java	(revision 2218)
@@ -132,7 +132,4 @@
 	 * Retrieves the classpath from a Jar file's MANIFEST.
 	 * </p>
-	 * 
-	 * @throws IOException
-	 * @throws FileNotFoundException
 	 */
 	protected String[] getClassPathFromJar(File jarFile) {
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 2217)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 2218)
@@ -36,6 +36,4 @@
 import javax.xml.transform.stream.StreamSource;
 
-import org.xml.sax.SAXException;
-
 import de.ugoe.cs.autoquest.eventcore.Event;
 import de.ugoe.cs.autoquest.eventcore.IEventType;
@@ -135,5 +133,5 @@
      *            name and path of the log file
      *
-     * @throws SAXException in the case, the file could not be parsed
+     * @throws JAXBException in the case, the file could not be parsed
      */
     public void parseFile(String filename) throws JAXBException {
Index: /trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/sequences/CMDsortKeyInteractions.java
===================================================================
--- /trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/sequences/CMDsortKeyInteractions.java	(revision 2217)
+++ /trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/sequences/CMDsortKeyInteractions.java	(revision 2218)
@@ -33,4 +33,5 @@
  * Command to sort the key interactions in a sequence of events. An example, the sequence to write
  * the upper case D
+ * </p>
  * <ul>
  * <li>press shift key</li>
@@ -40,5 +41,7 @@
  * </ul>
  * 
+ * <p>
  * is transformed to the sequence
+ * </p>
  * 
  * <ul>
@@ -49,7 +52,7 @@
  * </ul>
  * 
+ * <p>
  * in which the first pressed key (shift in this case) is always released last. The same is done for
  * the alt and the ctrl keys.
- * 
  * </p>
  * 
Index: /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/MainWindow.java
===================================================================
--- /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/MainWindow.java	(revision 2217)
+++ /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/MainWindow.java	(revision 2218)
@@ -73,6 +73,4 @@
      * Open the window.
      * </p>
-     * 
-     * @wbp.parser.entryPoint
      */
     public void open() {
Index: /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/ShowTaskTreeDialog.java
===================================================================
--- /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/ShowTaskTreeDialog.java	(revision 2217)
+++ /trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/ShowTaskTreeDialog.java	(revision 2218)
@@ -153,5 +153,4 @@
     /**
      * displays the dialog
-     * @param task 
      */
     public void open() {
