📄 tablabeltag.java
字号:
package com.mycompany.jsf.taglib;
import javax.faces.webapp.UIComponentTag;
/**
* This class is a tag handler that creates and configures a
* "com.mycompany.TabLabel" component with a "javax.faces.Link"
* renderer.
*
* @author Hans Bergsten, Gefion Software <hans@gefionsoftware.com>
* @version 1.0
*/
public class TabLabelTag extends UIComponentTag {
/**
* Returns "com.mycompany.TabLabel".
*/
public String getComponentType() {
return "com.mycompany.TabLabel";
}
/**
* Returns "javax.faces.Link".
*/
public String getRendererType() {
return "javax.faces.Link";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -