- Timestamp:
- 2008-07-03 00:03:15 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/CheckTag.java
r2101 r2151 36 36 37 37 /** 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 * 40 43 * @version $Id$ 41 44 */ … … 63 66 private String command; 64 67 68 /** 69 * Sets the desired command. 70 * @param command 71 * @throws JspTagException 72 */ 65 73 public void setCommand(String command) throws JspTagException { 66 74 if (!commands.contains(command)) … … 106 114 out.print(response); 107 115 } 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); 110 117 } 111 118