cmdresult.java~2~

来自「JFrame-----java系统通用框架 可以研究一下哦」· JAVA~2~ 代码 · 共 55 行

JAVA~2~
55
字号
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.ibm.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.ibm.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 + =
减小字号Ctrl + -
显示快捷键?