newactionbase.java

来自「jawe的最新版本,基于Java的图形化工作流编辑器。图形化工作流编辑器 。使用」· Java 代码 · 共 33 行

JAVA
33
字号
package org.enhydra.jawe;/*** The base class for JaWE actions for generating new XPDL elements.*/public abstract class NewActionBase extends ActionBase {   protected Class xpdlTypeClass;   protected Class xpdlTypeClassParentForEA;      public NewActionBase(JaWEComponent jawecomponent,Class xpdlTypeClass,Class xpdlTypeClassParentForEA) {      super(jawecomponent);      this.xpdlTypeClass=xpdlTypeClass;      this.xpdlTypeClassParentForEA=xpdlTypeClassParentForEA;   }   public NewActionBase(JaWEComponent jawecomponent, String name,Class xpdlTypeClass,Class xpdlTypeClassParentForEA) {      super(jawecomponent,name);      this.xpdlTypeClass=xpdlTypeClass;      this.xpdlTypeClassParentForEA=xpdlTypeClassParentForEA;   }   public Class getXPDLTypeClass() {      return xpdlTypeClass;   }      public Class getXPDLTypeClassParentForEA() {      return xpdlTypeClassParentForEA;   }   }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?