📄 cmdresult.java~3~
字号:
package com.corb.bisc.ebiz.base;
/**
* Insert the type's description here.
* Creation date: (2002-5-13 12:32:51)
* @author: Administrator
*/
public class CmdResult extends ObjectBase{
private String code = "*";
private BizComponent bizComp = null;
public final static String RESULT_KEY = "businessobject";
/**
* CmdResult constructor comment.
*/
public CmdResult(String aCode) {
super();
code = aCode;
}
/**
* Insert the method's description here.
* Creation date: (2002-5-13 12:56:31)
* @return com.corp.bisc.ebiz.common.BizComponent
*/
public BizComponent getBizComp() {
return bizComp;
}
/**
* Insert the method's description here.
* Creation date: (2002-5-13 12:56:31)
* @return int
*/
public String getCode() {
return code;
}
/**
* Insert the method's description here.
* Creation date: (2002-5-13 12:56:31)
* @param newBizComp com.corp.bisc.ebiz.common.BizComponent
*/
public void setBizComp(BizComponent newBizComp) {
bizComp = newBizComp;
}
/**
* Insert the method's description here.
* Creation date: (2002-5-13 12:56:31)
* @return int
*/
public void setCode(String strcode) {
code = strcode;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -