📄 actioncomponentbean.java
字号:
package org.gridsphere.provider.portletui.beans;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/* * @author <a href="mailto:russell@aei.mpg.de">Michael Russell</a> * @version $Id: ActionComponentBean.java 4496 2006-02-08 20:27:04Z wehrens $ * <p> * Includes jsp pages from any web application. */public class ActionComponentBean extends IncludeBean { private transient static Log log = LogFactory.getLog(ActionComponentBean.class); protected String activeCompId = ""; /** * Constructs default include bean */ public ActionComponentBean() { super(); } /** * Constructs an include bean */ public ActionComponentBean(String beanId) { super(beanId); } public String getActiveComponentId() { return activeCompId; } public void setActionComponentId(String compId) { this.activeCompId = compId; } public void store() { log.debug("Storing action component bean " + getBeanKey()); //super.store(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -