Show
Ignore:
Timestamp:
03/22/08 23:28:08 (8 months ago)
Author:
mikey
Message:

fixed typo and rewrote some passages

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/websites/processors/stubDefaultProcessorResolver.php

    r1447 r1448  
    1616 * The default processor resolver is able to select the processor to be used 
    1717 * for the current request depending on the request parameter <em>processor</em>. 
    18  * For instance, if you add a processor with 
     18 * For instance, if you add two processors with 
    1919 * <code> 
    2020 *   $defaultProcessor->addProcessor('foo', 'org::stubbles::test::FooProcessor'); 
    2121 *   $defaultProcessor->addProcessor('bar', 'org::stubbles::test::BarProcessor'); 
    2222 * </code> 
    23  * then the first added processor class named as second argument will be 
    24  * selected if the value of the request param is <em>foo</em>. 
     23 * then the first processor class will be selected if the value of the request 
     24 * param is <em>foo</em>. 
    2525 * 
    2626 * To make sure that a processor gets selected even in case the parameter is not 
     
    3333 * processors, else an exception will be thrown. 
    3434 *  
    35  * Additionally one can set the interceptor descriptor used by the processor and 
    36  * the page factory class to be used by the processor. While the first is used 
    37  * to determine the interceptor configuration to be used in conjunction with 
    38  * this processor, the latter determines the page factory class that will be 
    39  * injected into the processor's <code>selectPage()</code> method if the 
    40  * processor implements the 
    41  * <code>net::stubbles::websites::processors::stubPageBasesProcessor</code> 
     35 * Additionally one can set the interceptor descriptor and the page factory 
     36 * class. While the first is used to determine the interceptor configuration to 
     37 * be used in conjunction with this processor, the latter determines the page 
     38 * factory class that will be injected into the processor's 
     39 * <code>selectPage()</code> method if the processor implements the 
     40 * <code>net::stubbles::websites::processors::stubPageBasedProcessor</code> 
    4241 * interface. 
    4342 *