JetTableAllClasses | ||||||||||||||||||||
![]() | ||||||||||||||||||||
|
||||||||||||||||||||
![]() |
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. |