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

📄 validatorscripttag.java

📁 struts框架的jsf组件的核心实用例子集合
💻 JAVA
字号:
package com.corejsf;import javax.faces.component.UIComponent;import javax.faces.webapp.UIComponentTag;public class ValidatorScriptTag extends UIComponentTag {    private String functionName;      // PROPERTY: functionName   public void setFunctionName(String newValue) { functionName = newValue; }   public void setProperties(UIComponent component) {       super.setProperties(component);       if(component.getAttributes().get("functionName") == null)          component.getAttributes().put("functionName", functionName);    }    public void release() {      functionName = null;   }   public String getRendererType() { return null; }    public String getComponentType() { return "com.corejsf.ValidatorScript"; }  }

⌨️ 快捷键说明

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