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

📄 actioncomponentbean.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 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 + -