Show
Ignore:
Timestamp:
2008-06-23 00:00:48 (7 months ago)
Author:
mosipov
Message:

NEW - #1968: Javadoc issues

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/ConnectorHandler.java

    r1905 r2101  
    2626 
    2727/** 
    28  * Handler for some base properties.<br> 
    29  * It's a kind of wrapper to some basic properties handled by the {@link PropertiesLoader}. 
     28 * Handler for Connector-related properties.<br /> 
     29 * Wraps to the {@link PropertiesLoader}. 
    3030 *  
    3131 * @version $Id$ 
     
    3434 
    3535        /** 
    36      * Getter for the base dir (using for user files). 
    37      *  
    38      * @return {@link UserPathBuilder#getUserFilesPath(HttpServletRequest)} or the default base dir, if 
    39      *         {@link UserPathBuilder}} isn't set. 
    40      */ 
    41     public static String getUserFilesPath(final HttpServletRequest servletRequest) { 
    42         String userFilePath = RequestCycleHandler.getUserFilePath(servletRequest); 
     36         * Getter for the <code>UserFilesPath</code>. 
     37         *  
     38         * @return {@link UserPathBuilder#getUserFilesPath(HttpServletRequest)} or 
     39         *         the <code>DefaultUserFilePath</code> if {@link UserPathBuilder} 
     40         *         isn't set. 
     41         */ 
     42        public static String getUserFilesPath(final HttpServletRequest request) { 
     43        String userFilePath = RequestCycleHandler.getUserFilePath(request); 
    4344        return (userFilePath != null) ? userFilePath : getDefaultUserFilesPath(); 
    4445    } 
    4546 
    4647        /** 
    47          * Getter for the default handling of single extensions. 
     48         * Getter for the default handling of files with multiple extensions. 
    4849         *  
    49          * @return the forceSingleExtension 
     50         * @return <code>true</code> if single extension only should be enforced 
     51         *         else <code>false</code>. 
    5052         */ 
    5153        public static boolean isForceSingleExtension() { 
     
    5456 
    5557        /** 
    56          * Getter for the value to instruct the connector to return the full URL of a file/folder in the 
    57          * XML response rather than the absolute URL. 
     58         * Getter for the value to instruct the connector to return the full URL of 
     59         * a file/folder in the XML response rather than the absolute URL. 
    5860         *  
    59          * @return Boolean value of the property 'connector.fullUrl'. 
     61         * @return <code>true</code> if the property <code>connector.fullUrl</code> is 
     62         *         set else <code>false</code>. 
    6063         */ 
    6164        public static boolean isFullUrl() { 
     
    6467 
    6568        /** 
    66          * Getter for the default userFilesPath. 
     69         * Getter for the default <code>UserFilesPath</code>. 
    6770         *  
    68          * @return Default userfiles path (/userfiles) 
     71         * @return <code>DefaultUserFilesPath</code> (/userfiles) 
    6972         */ 
    7073        public static String getDefaultUserFilesPath() { 
     
    7376         
    7477        /** 
    75          * Getter for the value to instruct the Connector to check, if the uploaded image is really one. 
     78         * Getter for the value to instruct the Connector to check if the uploaded 
     79         * image is really an image. 
    7680         *  
    77          * @return Boolean value of the property 'connector.secureImageUploads'. 
     81         * @return Boolean value of the property 
     82         *         <code>connector.secureImageUploads</code>. 
    7883         */ 
    7984        public static boolean isSecureImageUploads() {