Changeset 171

Show
Ignore:
Timestamp:
01/29/07 01:37:23 (2 years ago)
Author:
mikey
Message:

corrected doc block

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/util/log/stubLoggerXJConfFactory.php

    r150 r171  
    11<?php 
     2/** 
     3 * Class to create the logging infrastructure from an xml configuration. 
     4 * 
     5 * @author      Frank Kleine <mikey@stubbles.net> 
     6 * @package     stubbles 
     7 * @subpackage  util_log 
     8 */ 
    29stubClassLoader::load('net.stubbles.util.xjconf.stubXJConfLoader', 
    310                      'net.stubbles.util.xjconf.stubConfigXJConfExtension', 
     
    714                   'XmlParser' 
    815); 
     16/** 
     17 * Class to create the logging infrastructure from an xml configuration. 
     18 * 
     19 * @static 
     20 * @package     stubbles 
     21 * @subpackage  util_log 
     22 * @uses        http://php.xjconf.net/ 
     23 */ 
    924class stubLoggerXJConfFactory 
    1025{ 
  • trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfLoader.php

    r150 r171  
    33 * Class loader to use for XJConf. 
    44 * 
    5  * @author  Frank Kleine <mikey@stubbles.net> 
     5 * @author      Frank Kleine <mikey@stubbles.net> 
     6 * @author      Stephan Schmidt <schst@stubbles.net> 
     7 * @package     stubbles 
     8 * @subpackage  util_xjconf 
    69 */ 
    710$xjConfUri = StarClassRegistry::getUriForClass('net.xjconf.XJConfLoader'); 
    811if (null === $xjConfUri) { 
    912    if (!@include 'XJConf/XJConfLoader.php') { 
    10         throw new stubException('XJConf could not be found in lib path.'); 
     13        throw new stubException('XJConf could not be found in lib nor in include path.'); 
    1114    } 
    1215} else { 
     
    2023 * 
    2124 * @package     stubbles 
    22  * @subpackage  helper 
     25 * @subpackage  util_xjconf 
     26 * @uses        http://php.xjconf.net/ 
    2327 */ 
    2428class stubXJConfLoader extends stubBaseObject implements XJConfClassLoader