cmdresult.java

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

JAVA
76
字号
/*****************************************************************************
* (C) Copyright 2004 。
* 保留对所有使用、复制、修改和发布整个软件和相关文档的权利。
* 本计算机程序受著作权法和国际公约的保护,未经授权擅自复制或
* 传播本程序的全部或部分,可能受到严厉的民事和刑事制裁,并
* 在法律允许的范围内受到最大可能的起诉。
*/

 /*****************************************************************************
  * @作者:Golden Peng
  * @版本: 1.0
  * @时间: 2002-10-08
  */
 /*****************************************************************************
  * 修改记录清单
  * 修改人  :
  * 修改记录:
  * 修改时间:
  * 修改描述:
  *
  */
package com.corp.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 + =
减小字号Ctrl + -
显示快捷键?