(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / PageType.java
index 9d2af30b74455c0f844060b7b80d375a3d0aed22..c23aa08784adb3831149d0ad278f2fd819ad3853 100644 (file)
 package org.wamblee.crawler;
 
 /**
- * 
+ * Represents the type of a page determining how the HTML should be transformed into 
+ * XML.
  */
 public class PageType {
 
+    /**
+     * Type string. 
+     */
     private String _type; 
     
+    /**
+     * Constructs the type.
+     * @param aType Type. 
+     */
     public PageType(String aType) { 
         _type = aType; 
     }
     
+    /**
+     * Gets the type. 
+     * @return Type.
+     */
     public String getType() { 
         return _type; 
     }