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

📄 imessage.java

📁 羽量级数据持久层开发框架
💻 JAVA
字号:
package org.speedframework.message;

import org.speedframework.action.IAction;
import org.speedframework.entity.ParamEntity;
import org.speedframework.message.state.IState;


/**
 * Class IMessage
 * 消息器 收集来自外部调用的对象并封装
 * @author <a href="mailto:santafeng@gmail.com"> lizf </a>
 * @version $Revision:1.0.0, $Date: 2007-10-9 8:02:02 $
 */
public interface IMessage
 {

    /**
     * Set return results pojos or object
     *
     * @param resul
     */
    public void setReturnResults(Object resul);

    /**
     * Get param entity
     *
     * @return
     */
    public ParamEntity getParamEntity();

    /**
     * Set param entity
     *
     * @param paramEntity
     */
    public void setParamEntity(ParamEntity paramEntity);

    /**
     * Set DateBase Action
     *
     * @param action
     */
    public void setAction(IAction action);

    /**
     * @return
     */
    public IAction getAction();

    /**
     * @param applicationID
     */
    public void setApplicationID(String applicationID);

    /**
     * Set filter state
     *
     * @param state
     */
    public void setState(IState state);

    /**
     * Get return pojos or object
     *
     * @return
     */
    public Object getPojos();
}

⌨️ 快捷键说明

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