class_BaseResolver.php

Go to the documentation of this file.
00001 <?php
00024 class BaseResolver extends BaseFrameworkSystem {
00028         private $className = "";
00029 
00030         // Exception constants
00031         const EXCEPTION_INVALID_COMMAND    = 0x1d0;
00032         const EXCEPTION_INVALID_CONTROLLER = 0x1d1;
00033         const EXCEPTION_INVALID_ACTION     = 0x1d2;
00034 
00041         protected function __construct ($className) {
00042                 // Call parent constructor
00043                 parent::__construct($className);
00044 
00045                 // Clean up a little
00046                 $this->removeNumberFormaters();
00047                 $this->removeSystemArray();
00048         }
00049 
00056         protected final function setClassName ($className) {
00057                 $this->className = $className;
00058         }
00059 
00065         public final function getClassName () {
00066                 return $this->className;
00067         }
00068 }
00069 
00070 // [EOF]
00071 ?>

Generated on Mon Dec 8 01:06:46 2008 for Ship-Simulator by  doxygen 1.5.6