You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by un...@apache.org on 2003/11/14 17:31:49 UTC

cvs commit: cocoon-2.2/src/java/org/apache/cocoon Processor.java

unico       2003/11/14 08:31:49

  Modified:    src/java/org/apache/cocoon Processor.java
  Log:
  Remove Component interface
  
  Revision  Changes    Path
  1.10      +4 -5      cocoon-2.2/src/java/org/apache/cocoon/Processor.java
  
  Index: Processor.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.2/src/java/org/apache/cocoon/Processor.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Processor.java	30 Oct 2003 12:20:45 -0000	1.9
  +++ Processor.java	14 Nov 2003 16:31:49 -0000	1.10
  @@ -58,19 +58,19 @@
   import org.apache.cocoon.environment.EnvironmentHelper;
   
   /**
  - *
  + * 
    * @author <a href="mailto:pier@apache.org">Pierpaolo Fumagalli</a>
    *         (Apache Software Foundation)
    * @author <a href="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
    * @version CVS $Id$
    */
  -public interface Processor extends Component {
  +public interface Processor {
   
       String ROLE = Processor.class.getName();
   
       /**
        * Process the given <code>Environment</code> producing the output.
  -     * @return If the processing is successfull <code>true</code> is returned.
  +     * @return If the processing is successful <code>true</code> is returned.
        *         If no match is found in the sitemap <code>false</code>
        *         is returned.
        * @throws ResourceNotFoundException If a sitemap component tries
  @@ -97,7 +97,6 @@
   
       /**
        * Get the root processor parent of this processor.
  -     *
        * @since 2.1.1
        */
       Processor getRootProcessor();