JetTableAllClasses
Current view: C:\xampp\htdocs\table\jettable\JetDataCell.class.php
Date: Fri Dec 1 17:20:38 JST 2006 Executable lines: 3
Code covered: 100.00% Executed lines: 3
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.4 $ $Date: 2006/12/01 13:41:52 $                      
      10                 :  * @link       http://jettable.rasign.jp/                                         
      11                 :  */                                                                               
      12                 : abstract class JetDataCell{                                                       
      13                 :     protected $value;                                                                
      14                 :     protected $attribute;                                                            
      15                 :                                                                                   
      16                 :     public function __construct($value, $attribute = array()){                       
      17              38 :         $this->value = $value;                                                          
      18              38 :         $this->attribute = $attribute;                                                  
      19              38 :     }                                                                                
      20                 :                                                                                   
      21                 :     abstract function getHtml();                                                     
      22                 : }                                                                                 
      23                 :                                                                                   
      24                 : ?>                                                                                

Generated by: PHPUnit 3.0.0 and Xdebug 2.0.0RC1.