You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by je...@apache.org on 2003/05/03 18:02:42 UTC

cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/modules/input NullInputModule.java RandomNumberModule.java SystemPropertyModule.java

jefft       2003/05/03 09:02:42

  Modified:    src/java/org/apache/cocoon/components/modules/input
                        NullInputModule.java RandomNumberModule.java
                        SystemPropertyModule.java
  Log:
  Small javadoc improvements
  
  Revision  Changes    Path
  1.2       +3 -3      cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/NullInputModule.java
  
  Index: NullInputModule.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/NullInputModule.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NullInputModule.java	9 Mar 2003 00:09:03 -0000	1.1
  +++ NullInputModule.java	3 May 2003 16:02:42 -0000	1.2
  @@ -59,8 +59,8 @@
   import java.util.Map;
   
   /**
  - * NullInputModule returns a null object.  Use this if you wnat to
  - * explicitly forbit a parameter to be filled. E.g. a database column
  + * NullInputModule returns a null object.  Use this if you want to
  + * explicitly forbid a parameter to be filled. E.g. a database column
    * shall be filled with a default value, your forms never contain that
    * parameter but you don't want anyone to provide this parameter
    * manually.
  
  
  
  1.2       +2 -2      cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/RandomNumberModule.java
  
  Index: RandomNumberModule.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/RandomNumberModule.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RandomNumberModule.java	9 Mar 2003 00:09:03 -0000	1.1
  +++ RandomNumberModule.java	3 May 2003 16:02:42 -0000	1.2
  @@ -62,7 +62,7 @@
   import java.util.Vector;
   
   /**
  - * RandomNumberModule returns a random number as string.
  + * RandomNumberModule returns a random number as a string.
    * Configuration through child elements: "min", "max" setting
    * range of random number. Defaults to "0" and "9999999999"
    * respectively.
  
  
  
  1.3       +3 -1      cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/SystemPropertyModule.java
  
  Index: SystemPropertyModule.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/modules/input/SystemPropertyModule.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SystemPropertyModule.java	16 Mar 2003 17:49:12 -0000	1.2
  +++ SystemPropertyModule.java	3 May 2003 16:02:42 -0000	1.3
  @@ -8,6 +8,8 @@
   /**
    * SystemPropertyModule is an JXPath based InputModule implementation that
    * provides access to system properties.
  + * Available system properties are defined by Java's <a
  + * href="http://java.sun.com/j2se/1.4.1/docs/api/java/lang/System.html#getProperties()">System.getProperties()</a>.
    *
    * JXPath allows to apply XPath functions to system properties.
    *