Update of /var/cvs/applications/scan/src/org/mmbase/util
In directory 
james.mmbase.org:/tmp/cvs-serv17652/applications/scan/src/org/mmbase/util

Modified Files:
        URLParamEscape.java FileCompare.java XFileCompare.java 
        ErrorStruct.java HttpPost.java URLEscape.java 
Log Message:
Fixes un javadoc


See also: http://cvs.mmbase.org/viewcvs/applications/scan/src/org/mmbase/util


Index: URLParamEscape.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/URLParamEscape.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- URLParamEscape.java 21 Jun 2007 15:50:20 -0000      1.2
+++ URLParamEscape.java 25 Mar 2008 21:00:24 -0000      1.3
@@ -18,7 +18,7 @@
  *
  * @deprecated use Encode
  * @author vpro
- * @version $Id: URLParamEscape.java,v 1.2 2007/06/21 15:50:20 nklasens Exp $
+ * @version $Id: URLParamEscape.java,v 1.3 2008/03/25 21:00:24 nklasens Exp $
  */
 public class URLParamEscape {
 
@@ -61,7 +61,7 @@
      * Escape a url.
      * Replaces 'invalid characters' with their Escaped code, i.e.
      * the questionmark (?) is escaped with %3F.
-     * @param url the urls to escape
+     * @param str the urls to escape
      * @return the escaped url.
      */
     public static String escapeurl(String str) {
@@ -101,7 +101,7 @@
      * Unescape a url.
      * Replaces escapesequenced with the actual character.
      * i.e %3F is replaced with the the questionmark (?).
-     * @param url the urls to unescape
+     * @param str the urls to unescape
      * @return the unescaped url.
      */
     public static String unescapeurl(String str) {


Index: FileCompare.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/FileCompare.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- FileCompare.java    30 Sep 2004 08:52:11 -0000      1.8
+++ FileCompare.java    25 Mar 2008 21:00:24 -0000      1.9
@@ -12,12 +12,12 @@
 
 /**
  * Class to compare two Files on their modification time, used by SortedVector.
- * @see SortedVector
- * @see CompareInterface
+ * @see org.mmbase.util.SortedVector
+ * @see org.mmbase.util.CompareInterface
  *
  * @author David V van Zeventer
  * @application SCAN or Devices
- * @version $Id: FileCompare.java,v 1.8 2004/09/30 08:52:11 pierre Exp $
+ * @version $Id: FileCompare.java,v 1.9 2008/03/25 21:00:24 nklasens Exp $
  * @todo   Should be named FileLastModifiedComparator and implement 
java.util.Comparator
  */
 public class FileCompare implements CompareInterface {
@@ -26,7 +26,7 @@
      * Make the comparison.
      * The result is a negative value if the time of the first file is 
'smaller' than the second,
      * a positive value if it is 'larger', and 0 if both times are 'equal'.
-     * @param thisOne the first object to compare. should be a 
<code>File</code>.
+     * @param thisone the first object to compare. should be a 
<code>File</code>.
      * @param other the second object to compare. should be a 
<code>File</code>.
      * @return the result of the comparison
      */


Index: XFileCompare.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/XFileCompare.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- XFileCompare.java   30 Sep 2004 08:52:16 -0000      1.7
+++ XFileCompare.java   25 Mar 2008 21:00:24 -0000      1.8
@@ -11,13 +11,13 @@
 
 /**
  * Class to compare XFile object depending on their comparefield.
- * @see SortedVector
- * @see CompareInterface
- * @see XFile
+ * @see org.mmbase.util.SortedVector
+ * @see org.mmbase.util.CompareInterface
+ * @see org.mmbase.util.XFile
  *
  * @author David V van Zeventer
  * @application SCAN or Devices
- * @version $Id: XFileCompare.java,v 1.7 2004/09/30 08:52:16 pierre Exp $
+ * @version $Id: XFileCompare.java,v 1.8 2008/03/25 21:00:24 nklasens Exp $
  * @todo    Should implement java.util.Comparator, perhaps be named 
'FileComparator'.
  */
 public class XFileCompare implements CompareInterface {


Index: ErrorStruct.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/ErrorStruct.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- ErrorStruct.java    29 Sep 2004 14:29:23 -0000      1.5
+++ ErrorStruct.java    25 Mar 2008 21:00:24 -0000      1.6
@@ -13,11 +13,11 @@
  * Class for storing error information useful in parsing.
  * Information that can be stored includes the error type, column and
  * line number of the parsed text where the error occurred, and a message.
- * used by the [EMAIL PROTECTED] org.mmbase.module.Config} module when parsing 
XML files.
+ * used by the org.mmbase.module.Config module when parsing XML files.
  *
  * @application Config
  * @author vpro
- * @version $Id: ErrorStruct.java,v 1.5 2004/09/29 14:29:23 pierre Exp $
+ * @version $Id: ErrorStruct.java,v 1.6 2008/03/25 21:00:24 nklasens Exp $
  */
 public class ErrorStruct {
 


Index: HttpPost.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/HttpPost.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- HttpPost.java       21 Jun 2007 15:50:20 -0000      1.30
+++ HttpPost.java       25 Mar 2008 21:00:24 -0000      1.31
@@ -21,7 +21,7 @@
  * HttpPost handles all the PostInformation
  *
  * @application SCAN. To port this, use of HttpPost by i.e. taglibs should be 
replaced with the jakarta FileUpload code.
- * @version $Id: HttpPost.java,v 1.30 2007/06/21 15:50:20 nklasens Exp $
+ * @version $Id: HttpPost.java,v 1.31 2008/03/25 21:00:24 nklasens Exp $
  * @author Daniel Ockeloen
  * @author Rico Jansen
  * @author Rob Vermeulen
@@ -376,8 +376,6 @@
 
     /**
     * read a block into a array of ContentLenght size from the users 
networksocket
-    *
-    * @param table the hashtable that is used as the source for the mapping 
process
     * @return byte[] buffer of length defined in the content-length mimeheader
     */
     public byte[] readContentLength(HttpServletRequest req) throws 
PostValueToLargeException {
@@ -660,7 +658,7 @@
     * Het kan dus voorkomen dat de marker op de scheiding ligt van 2 blokken 
ook dan
     * zal deze methode falen.
     *
-    * @param postbuffer buffer with the postbuffer information
+    * @param formFile buffer with the postbuffer information
     * @param post_header hashtable to put the fromFile information in
     */
     public boolean readPostFormData(String formFile, Hashtable<String, Object> 
post_header, String line) {


Index: URLEscape.java
===================================================================
RCS file: /var/cvs/applications/scan/src/org/mmbase/util/URLEscape.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- URLEscape.java      21 Jun 2007 15:50:20 -0000      1.2
+++ URLEscape.java      25 Mar 2008 21:00:24 -0000      1.3
@@ -15,7 +15,7 @@
  *
  * @deprecated use Encode
  * @author vpro
- * @version $Id: URLEscape.java,v 1.2 2007/06/21 15:50:20 nklasens Exp $
+ * @version $Id: URLEscape.java,v 1.3 2008/03/25 21:00:24 nklasens Exp $
  */
 public class URLEscape {
 
@@ -57,7 +57,7 @@
      * Escape a url.
      * Replaces 'invalid characters' with their Escaped code, i.e.
      * the questionmark (?) is escaped with %3F.
-     * @param url the urls to escape
+     * @param str the urls to escape
      * @return the escaped url.
      */
     public static String escapeurl(String str) {
@@ -98,7 +98,7 @@
      * Unescape a url.
      * Replaces escapesequenced with the actual character.
      * i.e %3F is replaced with the the questionmark (?).
-     * @param url the urls to unescape
+     * @param str the urls to unescape
      * @return the unescaped url.
      */
     public static String unescapeurl(String str) {
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to