JetTableAllClasses
Current view: C:\xampp\htdocs\table\jettable\JetFormatter.class.php
Date: Fri Dec 1 17:20:38 JST 2006 Executable lines: 2
Code covered: 100.00% Executed lines: 2
Legend: executed not executed dead code


       1                 : <?php                                                                             
       2                 : /**                                                                               
       3                 :  * データセルクラス<br>                                                           
       4                 :  * データセル出力クラスの抽象クラス                                               
       5                 :  *                                                                                
       6                 :  * @package    jettable.framework                                                 
       7                 :  * @author     rds <tk@rasign.jp>                                                 
       8                 :  * @license     http://www.opensource.org/licenses/mit-license.php The MIT License
       9                 :  * @version    $Revision: 1.1 $ $Date: 2006/12/01 13:41:52 $                      
      10                 :  * @link       http://jettable.rasign.jp/                                         
      11                 :  */                                                                               
      12                 : abstract class JetFormatter{                                                      
      13                 :     protected $format;                                                               
      14                 :                                                                                   
      15                 :     public function __construct($format = null){                                     
      16               2 :         $this->format = $format;                                                        
      17               2 :     }                                                                                
      18                 :                                                                                   
      19                 :     abstract function format($value);                                                
      20                 : }                                                                                 
      21                 :                                                                                   
      22                 : ?>                                                                                

Generated by: PHPUnit 3.0.0 and Xdebug 2.0.0RC1.