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 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java	(revision 1383)
@@ -36,5 +36,6 @@
 /**
  * <p>
- * TODO comment
+ * Parser for HTTP Monitor logs. Uses JAXB for parsing and is therefore quite simple. For each
+ * exchange in the log, it creates an appropriate event.
  * </p>
  * 
@@ -105,5 +106,9 @@
 
     /**
-     *
+     * <p>
+     * returns the sequences parsed by this parser
+     * </p>
+     * 
+     * @return as described
      */
     public Collection<List<Event>> getSequences() {
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java	(revision 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPUtils.java	(revision 1383)
@@ -19,5 +19,5 @@
 /**
  * <p>
- * TODO comment
+ * contains convenience methods used for processing HTTP exchanges
  * </p>
  * 
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseDirHTTP.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseDirHTTP.java	(revision 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseDirHTTP.java	(revision 1383)
@@ -31,5 +31,5 @@
  * <p>
  * Command that tries to parse all files in a folder as if they were log files generated by the
- * HTMLMonitor. The result is one set of sequences for all files (not one set of sequences for each
+ * HTTPMonitor. The result is one set of sequences for all files (not one set of sequences for each
  * file!).
  * </p>
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseHTTP.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseHTTP.java	(revision 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/commands/CMDparseHTTP.java	(revision 1383)
@@ -27,5 +27,5 @@
 /**
  * <p>
- * Command to parse a file with sessions monitored by AutoQUESTs HTTP monitor.
+ * Command to parse a file with a session monitored by AutoQUESTs HTTP monitor.
  * </p>
  * 
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPEventType.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPEventType.java	(revision 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPEventType.java	(revision 1383)
@@ -21,5 +21,6 @@
 /**
  * <p>
- * TODO comment
+ * the event type for HTTP events. Holds a reference to the HTTP exchange recorded by the HTTP
+ * monitor.
  * </p>
  * 
@@ -31,12 +32,24 @@
     private static final long serialVersionUID = 1L;
 
-    /** */
+    /**
+     * <p>
+     * the HTTP exchange recorded by the HTTP monitor
+     * </p>
+     */
     private HttpExchange exchange;
 
-    /** */
+    /**
+     * <p>
+     * the name of the event type as required by AutoQUEST's framework
+     * </p>
+     */
     private String name;
 
     /**
-     *
+     * <p>
+     * initializes this event with the represented HTTP exchange
+     * </p>
+     * 
+     * @param exchange the HTTP exchange recorded by the HTTP monitor
      */
     public HTTPEventType(HttpExchange exchange) {
@@ -96,5 +109,5 @@
 
     /**
-     * @return the exchange
+     * @return the HTTP exchange recorded by the HTTP monitor
      */
     public HttpExchange getExchange() {
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPTarget.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPTarget.java	(revision 1382)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/HTTPTarget.java	(revision 1383)
@@ -21,5 +21,6 @@
 /**
  * <p>
- * TODO comment
+ * the event target for HTTP events. Holds a reference to the receiver address of the HTTP exchange
+ * recorded by the HTTP monitor.
  * </p>
  * 
@@ -31,12 +32,24 @@
     private static final long serialVersionUID = 1L;
     
-    /** */
+    /**
+     * <p>
+     * the receiver address of the HTTP exchange
+     * </p>
+     */
     private Address receiver;
 
-    /** */
+    /**
+     * <p>
+     * a string representing the receiver address of the HTTP exchange
+     * </p>
+     */
     private String stringIdentifier;
 
     /**
-     *
+     * <p>
+     * initializes the target with the receiver address of the HTTP exchange
+     * </p>
+     * 
+     * @param receiver the receiver address of the HTTP exchange
      */
     public HTTPTarget(Address receiver) {
