Show
Ignore:
Timestamp:
11/17/07 18:01:44 (1 year ago)
Author:
mikey
Message:

renamed XJConfLoader to XJConf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/TestDynamicTypes.php

    r119 r129  
    66 * @author  Stephan Schmidt <stephan.schmidt@schlund.de> 
    77 */ 
    8 require_once '../XJConf/XJConfLoader.php'; 
     8require_once '../XJConf/XJConf.php'; 
    99use net::xjconf::DefinitionParser; 
    1010use net::xjconf::XmlParser; 
     
    2222class TestDynamicTypes 
    2323{ 
    24        public static function main() 
    25        
     24    public static function main() 
     25   
    2626        $tagParser = new DefinitionParser(); 
    2727        $defs      = $tagParser->parse(getcwd() . '/xml/defines-dynamic-types.xml'); 
     
    4040        $foo = $conf->getConfigValue('foo'); 
    4141        var_dump($foo); 
    42        
     42   
    4343} 
    4444TestDynamicTypes::main();