Show
Ignore:
Timestamp:
10/08/09 19:39:07 (3 years ago)
Author:
amandel
Message:

fix findings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/util/ArraysUtil.java

    r1557 r1559  
    7070    * method, e.g.: 
    7171    * <pre> 
    72     * logger.entering(CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 
     72    * logger.entering( 
     73    *       CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 
    7374    * </pre> 
    7475    * @param array The array whose string representation to return.   
     
    124125 
    125126   /** 
    126     * Returns a string representation of the contents of the specified array.  
     127    * Returns a string representation of the contents of the  
     128    * specified array.  
    127129    * If the array contains other arrays as elements, they are converted  
    128130    * to strings by the {@link Object#toString}method inherited  
     
    137139    * method, e.g.: 
    138140    * <pre> 
    139     * logger.entering(CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 
     141    * logger.entering( 
     142    *     CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 
    140143    * </pre> 
    141144    * @param array The array whose string representation to return.   
     
    177180 
    178181   /** 
    179     * Returns a string representation of the contents of the specified array.  
     182    * Returns a string representation of the contents of the specified  
     183    * array.  
    180184    * <p> 
    181185    * The value dumps all int stored in the given array. 
     
    184188    * method, e.g.: 
    185189    * <pre> 
    186     * logger.entering(CLASSNAME, "foo(int[])", ArraysUtil.toString(array)); 
     190    * logger.entering( 
     191    *     CLASSNAME, "foo(int[])", ArraysUtil.toString(array)); 
    187192    * </pre> 
    188193    * @param array The array whose string representation to return.   
     
    223228 
    224229    /** 
    225      * Returns a string representation of the contents of the specified array.  
     230     * Returns a string representation of the contents of the specified  
     231     * array.  
    226232     * <p> 
    227233     * The value dumps all short stored in the given array. 
     
    230236     * method, e.g.: 
    231237     * <pre> 
    232      * logger.entering(CLASSNAME, "foo(short[])", ArraysUtil.toString(array)); 
     238     * logger.entering( 
     239     *     CLASSNAME, "foo(short[])", ArraysUtil.toString(array)); 
    233240     * </pre> 
    234241     * @param array The array whose string representation to return.   
     
    269276 
    270277     /** 
    271       * Returns a string representation of the contents of the specified array.  
     278      * Returns a string representation of the contents of the  
     279      * specified array.  
    272280      * <p> 
    273281      * The value dumps all long stored in the given array. 
     
    276284      * method, e.g.: 
    277285      * <pre> 
    278       * logger.entering(CLASSNAME, "foo(long[])", ArraysUtil.toString(array)); 
     286      * logger.entering( 
     287      *     CLASSNAME, "foo(long[])", ArraysUtil.toString(array)); 
    279288      * </pre> 
    280289      * @param array The array whose string representation to return.   
     
    315324       
    316325      /** 
    317        * Returns a string representation of the contents of the specified array.  
     326       * Returns a string representation of the contents of the specified  
     327       * array. 
    318328       * <p> 
    319329       * The value dumps all byte values stored in the given array. 
     
    322332       * method, e.g.: 
    323333       * <pre> 
    324        * logger.entering(CLASSNAME, "foo(byte[])", ArraysUtil.toString(array)); 
     334       * logger.entering( 
     335       *     CLASSNAME, "foo(byte[])", ArraysUtil.toString(array)); 
    325336       * </pre> 
    326337       * @param array The array whose string representation to return.   
     
    361372        
    362373       /** 
    363         * Returns a string representation of the contents of the specified array.  
     374        * Returns a string representation of the contents of the specified  
     375        * array. 
    364376        * <p> 
    365377        * The value dumps all char values stored in the given array. 
     
    368380        * method, e.g.: 
    369381        * <pre> 
    370         * logger.entering(CLASSNAME, "foo(char[])", ArraysUtil.toString(array)); 
     382        * logger.entering( 
     383        *     CLASSNAME, "foo(char[])", ArraysUtil.toString(array)); 
    371384        * </pre> 
    372385        * @param array The array whose string representation to return.   
     
    407420 
    408421        /** 
    409          * Returns a string representation of the contents of the specified array.  
     422         * Returns a string representation of the contents of the  
     423         * specified array.  
    410424         * <p> 
    411425         * The value dumps all boolean values stored in the given array. 
     
    414428         * method, e.g.: 
    415429         * <pre> 
    416          * logger.entering(CLASSNAME, "foo(boolean[])", ArraysUtil.toString(array)); 
     430         * logger.entering( 
     431         *     CLASSNAME, "foo(boolean[])", ArraysUtil.toString(array)); 
    417432         * </pre> 
    418433         * @param array The array whose string representation to return.