⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 customselecttag.java

📁 一个很好的开源项目管理系统源代码
💻 JAVA
字号:
package net.java.workeffort.infrastructure.jsptags;import net.java.htmltag.SelectTag;/** * Custom select 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 CustomSelectTag extends SelectTag {    /**     * @return Returns the errorStyleClass.     */    public String getErrorStyleClass() {        return (getStyleClass() == null) ? null : getStyleClass() + "Error";    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -