|
|

楼主 |
发表于 2006/5/9 10:13:39
|
显示全部楼层
我一直不明白文档中提到的 自定义的PO类 extends X _ZZ_ WF ,这个继承的X _***.java是创建完工作流ZZ_WF之后GenerateModel工具自动生成的吗? 还是compiere中本来就用的?
下面是我的PO类的部分代码:
public class MWF extends X_AD_Workflow implements DocAction {
public MWF(Properties ctx, int AD_Workflow_ID, String trxName) {
super(ctx, AD_Workflow_ID, trxName);
// TODO Auto-generated constructor stub
}
/**
*
*/
private static final long serialVersionUID = 1L;
/** Process Message */
private String m_processMsg = null;
/**
* 实现DocAction接口中的processIt(String action)方法
* @param action String
*/
public boolean processIt(String action) throws Exception {
m_processMsg = null;//初始化的时候Document Status内的处理信息为空。
DocumentEngine engine =new DocumentEngine(this,this.getDocStatus());
return engine.processIt(action,this.getDocAction());
}
/**
* 获取处理状态的信息。
*/
public String prepareIt() {
System.out.println("prepareIt");
return DocAction.STATUS_InProgress;
}
/**
* 获取处理信息
*/
public String getProcessMsg() {
return this.m_processMsg;
}
。。。。。。。
我是不是不应该继承X_AD_Workflow,应该继承那个类呢?
希望能得到 pshen 的详细指点和说明。谢谢。。。。。。 |
|