📄 customtextareatag.java
字号:
package net.java.workeffort.infrastructure.jsptags;import net.java.htmltag.TextAreaTag;/** * Custom textArea tag. If there is an 'styleClass' attribute for an element and * a spring bind error occurs this will render the element with the * styleClass+Error. (ie no need to set the 'errorStyleClass' attribute' for the * element) * @author Antony Joseph */public class CustomTextAreaTag extends TextAreaTag { /** * @return Returns the errorStyleClass. */ public String getErrorStyleClass() { return (getStyleClass() == null) ? null : getStyleClass() + "Error"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -