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/tags/CheckTag.java

    r2101 r2151  
    3636 
    3737/** 
    38  * CheckTag.java - TODO DOCUMENTME! 
    39  * 
     38 * This tag displays information about browser and user capabilities. There are 
     39 * tree available commands (CompatibleBrowser, FileBrowsing, FileUpload) which 
     40 * respond an English message.<br /> 
     41 * <strong>Hint</strong>: The message string cannot be localized at the moment. 
     42 *  
    4043 * @version $Id$ 
    4144 */ 
     
    6366        private String command; 
    6467 
     68        /** 
     69         * Sets the desired command. 
     70         * @param command 
     71         * @throws JspTagException 
     72         */ 
    6573        public void setCommand(String command) throws JspTagException { 
    6674                if (!commands.contains(command)) 
     
    106114                        out.print(response); 
    107115                } catch (IOException e) { 
    108                         // FIXME log or else 
    109                         e.printStackTrace(); 
     116                        throw new JspException("Tag response could not be written to the user!",e); 
    110117                } 
    111118