You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/05/17 00:17:02 UTC

cvs commit: jakarta-commons/lang STATUS.html build.xml

scolebourne    2003/05/16 15:17:02

  Modified:    lang     STATUS.html build.xml
  Log:
  Remove functor subpackage
  
  Revision  Changes    Path
  1.35      +5 -14     jakarta-commons/lang/STATUS.html
  
  Index: STATUS.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/STATUS.html,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- STATUS.html	10 Apr 2003 18:59:48 -0000	1.34
  +++ STATUS.html	16 May 2003 22:17:01 -0000	1.35
  @@ -28,6 +28,8 @@
   <li><strong>Main package</strong> - A package for the manipulation of basic Java classes
   <ul>
    <li><strong>StringUtils</strong> - Helper for java.lang.String.</li>
  + <li><strong>StringEscapeUtils</strong> - Utility for escaping and unescaping Strings.</li>
  + <li><strong>WordWrapUtils</strong> - Utility for working with words.</li>
    <li><strong>CharSetUtils</strong> - Methods for dealing with CharSets, which are sets of characters such as [a-z] and [abcdez].</li>
    <li><strong>RandomStringUtils</strong> - Helper for creating randomised Strings.</li>
    <li><strong>BooleanUtils</strong> - Helper for boolean and java.lang.Boolean.</li>
  @@ -62,22 +64,11 @@
    <li><strong>NestedError</strong> - An exception that supports a nested exception.</li>
   </ul>
   
  -<li><strong>Functor package</strong> - A package for basic f(x) type functions.
  -<ul>
  - <li><strong>Predicate</strong> - f(x) that evaluates an Object and returns a boolean.</li>
  - <li><strong>PredicateUtils</strong> - Implementations of most commonly required predicates.</li>
  - <li><strong>Transformer</strong> - f(x) that transforms one Object into another.</li>
  - <li><strong>TransformerUtils</strong> - Implementations of most commonly required transformers.</li>
  - <li><strong>Executor</strong> - f(x) that receives an Object and executes an action.</li>
  - <li><strong>ExecutorUtils</strong> - Implementations of most commonly required executors.</li>
  - <li><strong>Factory</strong> - f(x) that creates an Object.</li>
  - <li><strong>FactoryUtils</strong> - Implementations of most commonly required factories.</li>
  -</ul>
  -
   <li><strong>Math package</strong> - A package for simple business (not scientific) maths classes.
   <ul>
  - <li><strong>Range</strong> - A range of numbers.</li>
    <li><strong>Fraction</strong> - A fraction.</li>
  + <li><strong>Range</strong> - A range of numbers.</li>
  + <li><strong>RandomUtils</strong> - A utility class for working with random numbers.</li>
   </ul>
   
   <li><strong>Util package</strong> - A package for common useful utilities.
  
  
  
  1.10      +12 -22    jakarta-commons/lang/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	7 Jan 2003 19:56:40 -0000	1.9
  +++ build.xml	16 May 2003 22:17:01 -0000	1.10
  @@ -155,15 +155,14 @@
   
     <target name="test"  depends="
                                   compile.tests, 
  -                                test.lang, 
  -                                test.builder, 
  -                                test.exception, 
  -                                test.functor,
  +                                test.lang,
  +                                test.builder,
  +                                test.enum,
  +                                test.exception,
                                   test.math,
                                   test.reflect,
                                   test.time,
  -                                test.util,
  -                                test.enum" 
  +                                test.util" 
                                   
      description="Run all unit test cases">
       <echo message="Running tests ..."/>
  @@ -178,11 +177,11 @@
       </java>
     </target>
   
  -  <target name="test.exception" depends="compile.tests">
  -    <echo message="Running exception package tests ..."/>
  +  <target name="test.builder" depends="compile.tests">
  +    <echo message="Running builder package tests ..."/>
       <java classname="${test.runner}" fork="yes"
           failonerror="${test.failonerror}">
  -      <arg value="org.apache.commons.lang.exception.ExceptionTestSuite"/>
  +      <arg value="org.apache.commons.lang.builder.BuilderTestSuite"/>
         <classpath refid="test.classpath"/>
       </java>
     </target>
  @@ -196,20 +195,11 @@
       </java>
     </target>
   
  -  <target name="test.builder" depends="compile.tests">
  -    <echo message="Running builder package tests ..."/>
  -    <java classname="${test.runner}" fork="yes"
  -        failonerror="${test.failonerror}">
  -      <arg value="org.apache.commons.lang.builder.BuilderTestSuite"/>
  -      <classpath refid="test.classpath"/>
  -    </java>
  -  </target>
  -
  -  <target name="test.functor" depends="compile.tests">
  -    <echo message="Running functor package tests ..."/>
  +  <target name="test.exception" depends="compile.tests">
  +    <echo message="Running exception package tests ..."/>
       <java classname="${test.runner}" fork="yes"
           failonerror="${test.failonerror}">
  -      <arg value="org.apache.commons.lang.functor.FunctorTestSuite"/>
  +      <arg value="org.apache.commons.lang.exception.ExceptionTestSuite"/>
         <classpath refid="test.classpath"/>
       </java>
     </target>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org