Changeset 1683

Show
Ignore:
Timestamp:
2008-03-05 19:19:05 (9 months ago)
Author:
th-schwarz
Message:

docu

Location:
FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/handlers
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/handlers/ExtensionsHandler.java

    r1585 r1683  
    2828 
    2929/** 
    30  * Static object which manages the allowed and denied extensions for each file type. The 
    31  * extensions are preset by the defaults defined in default.properties.<br> 
     30 * Handler which manages the allowed and denied extensions for each resource type. The 
     31 * extensions are preset by the properties managed by {@link PropertiesLoader}.<br> 
    3232 * <br> 
    3333 * Hint: It's recomment to use either allowed or denied extensions for one file type. 
  • FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/handlers/PropertiesLoader.java

    r1585 r1683  
    3030 
    3131/** 
    32  * PropertiesHandler.java - TODO DOCUMENTME! 
     32 * Handler to hold the basic properties.<br> 
     33 * The main default file is 'default.properties' in the deepth of the classpath and should be 
     34 * untouched. If there is a file named 'fckeditor.properties' in the root of the classpath, it will 
     35 * be loaded. Values which are loaded before, will be overwritten. 
    3336 *  
    3437 * @version $Id$ 
     
    5154                                try { 
    5255                                        properties.load(new BufferedInputStream(in)); 
    53                                         logger.info("User's properties successfull loaded!"); 
     56                                        logger.info("User's properties loaded successfully!"); 
    5457                                } catch (IOException e) { 
    5558                                        logger.error("Error while loading user properties!", e);