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/TestInterfaces.php

    r119 r129  
    66 * @author  Frank Kleine <frank.kleine@schlund.de> 
    77 */ 
    8 require_once '../XJConf/XJConfLoader.php'; 
     8require_once '../XJConf/XJConf.php'; 
    99use net::xjconf::DefinitionParser; 
    1010use net::xjconf::XmlParser; 
     
    1818class TestInterfaces 
    1919{ 
    20        public static function main() 
    21        
     20    public static function main() 
     21   
    2222        $tagParser = new DefinitionParser(); 
    2323        $defs      = $tagParser->parse(getcwd() . '/xml/defines-interfaces.xml'); 
     
    3737        var_dump($foo); 
    3838        var_dump($foo->getBar()); 
    39        
     39   
    4040} 
    4141TestInterfaces::main();