You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2002/02/25 17:13:36 UTC

cvs commit: jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/system Container.java

bloritsch    02/02/25 08:13:36

  Modified:    .        build.xml
               src/scratchpad/org/apache/avalon/excalibur/system
                        Container.java
  Log:
  fix the Container text to be more representative of reality.
  
  Revision  Changes    Path
  1.105     +5 -4      jakarta-avalon-excalibur/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/build.xml,v
  retrieving revision 1.104
  retrieving revision 1.105
  diff -u -r1.104 -r1.105
  --- build.xml	20 Feb 2002 06:25:56 -0000	1.104
  +++ build.xml	25 Feb 2002 16:13:36 -0000	1.105
  @@ -26,6 +26,7 @@
       (and without typing -D each time he compiles it)
     -->
     <property file="build.properties"/>
  +  <property file="./.ant.properties"/> <!-- The build.properties version is preferred -->
     <property file="${user.home}/.ant.properties"/>
   
     <property name="name" value="excalibur"/>
  @@ -303,7 +304,7 @@
         <exclude name="**/test/**"/>
       </rmic>
     </target>
  -    
  +
     <!-- Compiles all of the tests after copying them into a new src directory -->
     <target name="compile-tests" depends="compile">
       <!-- Copy over all of the tests applying test filters -->
  @@ -326,7 +327,7 @@
           <include name="**/test/**"/>
         </fileset>
       </copy>
  -        
  +
       <!-- Compile all of the tests -->
       <mkdir dir="${build.testclasses}"/>
       <copy todir="${build.testclasses}">
  @@ -343,7 +344,7 @@
         <classpath refid="project.class.path" />
       </javac>
     </target>
  -    
  +
     <!-- Run all of the tests and generate an html report -->
     <target name="test" depends="check"/>
     <target name="check" depends="compile-tests" description="perform unit tests">
  @@ -782,7 +783,7 @@
   
     <!-- Prepares the documentation directory -->
     <target name="docs" depends="javadocs, html-docs" description="generates the Excalibur documentation"/>
  -    
  +
     <!-- Create the source distribution -->
     <target name="src-dist" depends="setup-properties">
   
  
  
  
  1.7       +4 -4      jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/system/Container.java
  
  Index: Container.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/system/Container.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Container.java	5 Feb 2002 20:38:17 -0000	1.6
  +++ Container.java	25 Feb 2002 16:13:36 -0000	1.7
  @@ -11,12 +11,12 @@
   import org.apache.avalon.framework.context.Context;
   
   /**
  - * The Container is an interface used to mark the Containers in your system.  It
  - * exposes a protected getComponentManager() method so that the Container's
  - * Manager can expose that to the instantiating class.
  + * The Container is an interface used to assist Container developers to obtain
  + * the desired object from the Context.  All communication from the
  + * ContainerManager to the Container is through the Context object.
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
  - * @version CVS $Revision: 1.6 $ $Date: 2002/02/05 20:38:17 $
  + * @version CVS $Revision: 1.7 $ $Date: 2002/02/25 16:13:36 $
    */
   public interface Container
   {
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>