imessage.java
来自「羽量级数据持久层开发框架」· Java 代码 · 共 69 行
JAVA
69 行
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 + =
减小字号Ctrl + -
显示快捷键?