Index: branches/dev/html/test/adachi/SC_Validator.php
===================================================================
--- branches/dev/html/test/adachi/SC_Validator.php	(revision 13729)
+++ branches/dev/html/test/adachi/SC_Validator.php	(revision 13730)
@@ -1,10 +1,19 @@
 <?php
+/**
+ *  validation¥¯¥é¥¹
+ */
 class SC_Validator {
     var $_error;
     var $_errorMessage;
     
-    function SC_Validator(){
-    }
-    
+    /**
+     *  
+     *  
+     *  @param string $method ¼Â»Ü¤¹¤ëvalidationÌ¾
+     *  @param mixed  $args   validation¤ËÉ¬Í×¤Ê°ú¿ô
+     *  
+     *  @return object SC_Validator_$method
+     *  @example $objValidator = SC_Validator::factory('MAX', 20);
+     */
     function factory($method, $args = null){
         $class = 'SC_Validator_' . $method;
@@ -14,4 +23,11 @@
     }
     
+    /**
+     *  
+     *  
+     *  @param object SC_Param
+     *  
+     *  @return void
+     */
     function validate($objParam){}
     
@@ -21,5 +37,5 @@
     
     function is_ok(){
-        $bool = true;;
+        $bool = true;
         if ($this->is_error()) { $bool = false; }
         
@@ -27,4 +43,5 @@
     }
     
+    
     function getErrorMessage(){}
 }
