📄 tabbedpane2tag.java
字号:
package com.cim.jsf.component.tabbedPane2;
import com.cim.jsf.util.TagUtil;
import javax.faces.component.UIComponent;
import javax.faces.webapp.UIComponentBodyTag;
public class TabbedPane2Tag
extends UIComponentBodyTag {
/**
* getComponentType
*
* @return String
* @todo Implement this javax.faces.webapp.UIComponentTag method
*/
public String getComponentType() {
return "com.promise.jsf.TabbedPane2";
}
/**
* getRendererType
*
* @return String
* @todo Implement this javax.faces.webapp.UIComponentTag method
*/
public String getRendererType() {
return "com.cim.jsf.TabbedPane2";
}
/**
* setProperties
*
* @param component UIComponent
*/
public void setProperties( UIComponent component ) {
super.setProperties( component );
TagUtil.setObject( component, "value", _value );
TagUtil.setString( component, "currentTabName", _currentTabName );
}
/**
* release
*/
public void release() {
super.release();
_value = null;
_currentTabName = null;
}
public void setValue( String value ) {
this._value = value;
}
public void setCurrentTabName( String currentTabName ) {
this._currentTabName = currentTabName;
}
private String _value = null;
private String _currentTabName = null;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -