Show
Ignore:
Timestamp:
2008-07-03 00:03:15 (6 months ago)
Author:
mosipov
Message:

JavaDoc issues

Files:
1 modified

Legend:

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

    r2101 r2151  
    2323import java.util.HashMap; 
    2424import java.util.Map; 
     25 
     26import net.fckeditor.tool.Utils; 
    2527 
    2628/** 
     
    7476         *         the string argument. 
    7577         * @throws IllegalArgumentException 
    76          *             If 'name' is <code>null</code> or does not exist. 
     78         *             If 'name' is <code>null</code>, empty, or does not exist. 
    7779         */ 
    7880        public static CommandHandler valueOf(final String name) throws IllegalArgumentException { 
    79                 if (name == null) 
     81                if (Utils.isEmpty(name)) 
    8082                        throw new IllegalArgumentException(); 
    8183