⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 conformanceclass.java

📁 jawe的最新版本,基于Java的图形化工作流编辑器。图形化工作流编辑器 。使用JAVA语言开发
💻 JAVA
字号:
package org.enhydra.shark.xpdl.elements;import org.enhydra.shark.xpdl.XMLAttribute;import org.enhydra.shark.xpdl.XMLComplexElement;import org.enhydra.shark.xpdl.XPDLConstants;/** *  Represents coresponding element from XPDL schema. *  *  @author Sasa Bojanic */public class ConformanceClass extends XMLComplexElement {      public ConformanceClass (Package parent) {      super(parent, false);   }   protected void fillStructure () {      XMLAttribute attrGraphConformance=new XMLAttribute(this,"GraphConformance",            false,new String[] {               XPDLConstants.GRAPH_CONFORMANCE_NONE,               XPDLConstants.GRAPH_CONFORMANCE_FULL_BLOCKED,               XPDLConstants.GRAPH_CONFORMANCE_LOOP_BLOCKED,               XPDLConstants.GRAPH_CONFORMANCE_NON_BLOCKED            }, 0);      add(attrGraphConformance);   }   public XMLAttribute getGraphConformanceAttribute() {      return (XMLAttribute)get("GraphConformance");   }      public String getGraphConformance () {      return getGraphConformanceAttribute().toValue();   }   public void setGraphConformanceNONE () {      getGraphConformanceAttribute().setValue(XPDLConstants.GRAPH_CONFORMANCE_NONE);         }   public void setGraphConformanceFULL_BLOCKED () {      getGraphConformanceAttribute().setValue(XPDLConstants.GRAPH_CONFORMANCE_FULL_BLOCKED);   }   public void setGraphConformanceLOOP_BLOCKED () {      getGraphConformanceAttribute().setValue(XPDLConstants.GRAPH_CONFORMANCE_LOOP_BLOCKED);         }   public void setGraphConformanceNON_BLOCKED () {      getGraphConformanceAttribute().setValue(XPDLConstants.GRAPH_CONFORMANCE_NON_BLOCKED);         }   }

⌨️ 快捷键说明

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