亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jpdl-3.0.xsd

?? jbpm demo 是一款非常不錯的開源工作流,簡單易用,適合擴張開發!
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
								<xs:documentation>The name for this timer. Every timer should have a unique name.  If a name is not specified then the name of the enclosing node is taken.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="duedate" type="duedateType" use="required">
							<xs:annotation>
								<xs:documentation>The duration that specifies the time period between the creation of the timer and the execution of the timer.  This can be expressed in business hours, minutes, etc.  See the documentation for syntax for this attribute.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="repeat" type="repeatType" use="optional">
							<xs:annotation>
								<xs:documentation>yes, true, or duration.  After a timer has been executed on the duedate, this repeat attribute specifies the duration between repeating timer executions until the node is left.  If yes or true are specified then the value of duedate is used.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="transition" type="xs:string" use="optional">
							<xs:annotation>
								<xs:documentation>A transition name to be taken after the timer executes, the timer event is fired and execution of any specified actions has completed.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="cancel-event" type="xs:string" use="optional" default="task-end">
							<xs:annotation>
								<xs:documentation>task-assign, task-start, task-end, or any combination of these specified as a comma separated list.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>Named tasks can be referenced and looked up via the TaskMgmtDefinition.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="blocking"   type="booleanType" use="optional" default="false"/>
			<xs:attribute name="signalling" type="booleanType" use="optional" default="true"/>
			<xs:attribute name="description" type="xs:string" use="optional"/>
			<xs:attribute name="duedate" type="duedateType" use="optional">
				<xs:annotation>
					<xs:documentation>The duration that specifies the time period between the creation of the timer and the execution of the timer.  This can be expressed in business hours, minutes, etc.  See the documentation for syntax for this attribute.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="swimlane" type="xs:string" use="optional"/>
			<xs:attribute name="priority" use="optional" default="normal">
				<xs:annotation>
					<xs:documentation>This value can also be any integer where the lower the number the higher the priority.</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:union>
						<xs:simpleType>
							<xs:restriction base="xs:string">
								<xs:enumeration value="highest"/>
								<xs:enumeration value="high"/>
								<xs:enumeration value="normal"/>
								<xs:enumeration value="low"/>
								<xs:enumeration value="lowest"/>
							</xs:restriction>
						</xs:simpleType>
						<xs:simpleType>
							<xs:restriction base="xs:int"/>
						</xs:simpleType>
					</xs:union>
				</xs:simpleType>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="task-node">
		<xs:annotation>
			<xs:documentation>A node which accepts a list of tasks to be executed.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="task" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="event" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="timer" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
			<xs:attribute name="signal" use="optional" default="last">
				<xs:annotation>
					<xs:documentation>Signal specifies the effect of task completion on the process execution continuation.</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:enumeration value="unsynchronized"/>
						<xs:enumeration value="never"/>
						<xs:enumeration value="first"/>
						<xs:enumeration value="first-wait"/>
						<xs:enumeration value="last"/>
						<xs:enumeration value="last-wait"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:attribute>
			<xs:attribute name="create-tasks" type="booleanType" use="optional" default="true">
				<xs:annotation>
					<xs:documentation>Can be set to false when a runtime calculation has to determine which of the tasks have to be created.  In that case, add an action on node-enter, create the tasks in the action, and set create-tasks to false.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="end-tasks" type="booleanType" use="optional" default="false">
				<xs:annotation>
					<xs:documentation>Can be set to true, in which all the tasks that are still open are ended on the node-leave event.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="timer">
		<xs:annotation>
			<xs:documentation>Specifies a timer that monitors the duration of an execution in this node.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:choice>
				<xs:element ref="action"/>
				<xs:element ref="script"/>
			</xs:choice>
			<xs:attribute name="name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>The name for this timer. Every timer should have a unique name.  If a name is not specified then the name of the enclosing node is taken.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="duedate" type="duedateType" use="required">
				<xs:annotation>
					<xs:documentation>The duration that specifies the time period between the creation of the timer and the execution of the timer.  This can be expressed in business hours, minutes, etc.  See the documentation for syntax for this attribute.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="repeat" type="repeatType" use="optional">
				<xs:annotation>
					<xs:documentation>yes, true, or duration.  After a timer has been executed on the duedate, this repeat attribute specifies the duration between repeating timer executions until the node is left.  If yes or true are specified then the value of duedate is used.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="transition" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>A transition name to be taken after the timer executes, the timer event is fired and execution of any specified actions has completed.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="transition">
		<xs:annotation>
			<xs:documentation>The leaving transitions.  Each transition leaving a node must have a distinct name.  At most one transition can have no name.  The first transition specified is the default transition:  the path taken when the node is left without specifying a transition.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0" maxOccurs="unbounded">
					<xs:element ref="action"/>
					<xs:element ref="script"/>
					<xs:element ref="create-timer"/>
					<xs:element ref="cancel-timer"/>
				</xs:choice>
				<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>The name of the transition.  Note that each transition leaving a node must have a distinct name.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="to" type="xs:string" use="required">
				<xs:annotation>
					<xs:documentation>The hierarchical name of the destination node.  See documentation for an description of hierarchical names.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="variable">
		<xs:annotation>
			<xs:documentation>Input and Output variables for the node.  Input variables are specified by access "read". If you have assigned variables during the script evaluation, the variables with "write" access allows you to store the values in the process instance.  It does not matter whether the variables existed prior to this action.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>User defined metadata.</xs:documentation>
					</xs:annotation>
				</xs:any>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
			<xs:attribute name="access" type="accessType" use="optional" default="read,write"/>
			<xs:attribute name="mapped-name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>Defaults to the process variable name as given by the name attribute.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="process-definition-v3.0">
		<xs:annotation>
			<xs:documentation>Version 3.0 of the PDL schema</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element ref="swimlane" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="start-state" minOccurs="0">
				<xs:annotation>
					<xs:documentation>The start state of the process.  Note that a process without a start-state is valid, but cannot be executed.</xs:documentation>
				</xs:annotation>
				<xs:complexType>
					<xs:sequence>
						<xs:element ref="task" minOccurs="0"/>
						<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
						<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:choice minOccurs="0" maxOccurs="unbounded">
									<xs:element ref="action"/>
									<xs:element ref="script"/>
									<xs:element ref="create-timer"/>
									<xs:element ref="cancel-timer"/>
								</xs:choice>
								<xs:attribute name="type" use="required">
									<xs:simpleType>
										<xs:restriction base="xs:string">
											<xs:enumeration value="node-leave"/>
											<xs:enumeration value="after-signal"/>
										</xs:restriction>
									</xs:simpleType>
								</xs:attribute>
							</xs:complexType>
						</xs:element>
						<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
					</xs:sequence>
					<xs:attribute name="name" type="xs:string" use="optional"/>
					<xs:attribute name="swimlane" type="xs:string" use="optional"/>
				</xs:complexType>
			</xs:element>
			<xs:choice minOccurs="0" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>The nodes of the process definition.  Note that a process without nodes is valid, but cannot be executed.</xs:documentation>
				</xs:annotation>
				<xs:element ref="state"/>
				<xs:element ref="task-node"/>
				<xs:element ref="super-state"/>
				<xs:element ref="process-state"/>
				<xs:element ref="node"/>
				<xs:element ref="fork"/>
				<xs:element ref="join"/>
				<xs:element ref="decision"/>
				<xs:element ref="end-state"/>
			</xs:choice>
			<xs:choice minOccurs="0" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>Globally defined actions that can be referenced from events and transitions.  </xs:documentation>
				</xs:annotation>
				<xs:element ref="action"/>
				<xs:element ref="script"/>
				<xs:element ref="create-timer"/>
				<xs:element ref="cancel-timer"/>
			</xs:choice>
			<xs:element ref="task" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>Supports all event types.  Uniquely supports process-start and process-end.</xs:documentation>
				</xs:annotation>
				<xs:complexType>
					<xs:choice minOccurs="0" maxOccurs="unbounded">
						<xs:element ref="action"/>
						<xs:element ref="script"/>
						<xs:element ref="create-timer"/>
						<xs:element ref="cancel-timer"/>
					</xs:choice>
					<xs:attribute name="type" use="required">
						<xs:simpleType>
							<xs:restriction base="xs:string">
								<xs:enumeration value="node-enter"/>
								<xs:enumeration value="node-leave"/>
								<xs:enumeration value="before-signal"/>
								<xs:enumeration value="after-signal"/>
								<xs:enumeration value="superstate-enter"/>
								<xs:enumeration value="superstate-leave"/>
								<xs:enumeration value="task-create"/>
								<xs:enumeration value="task-assign"/>
								<xs:enumeration value="task-start"/>
								<xs:enumeration value="task-end"/>
								<xs:enumeration value="transition"/>
								<xs:enumeration value="timer"/>
								<xs:enumeration value="subprocess-created"/>
								<xs:enumeration value="subprocess-end"/>
								<xs:enumeration value="process-start"/>
								<xs:enumeration value="process-end"/>
							</xs:restriction>
						</xs:simpleType>
					</xs:attribute>
				</xs:complexType>
			</xs:element>
			<xs:element ref="exception-handler" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="name" type="xs:string" use="optional">
			<xs:annotation>
				<xs:documentation>the name of the process</xs:documentation>
			</xs:annotation>
		</xs:attribute>
	</xs:complexType>
</xs:schema>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美中文字幕亚洲一区二区va在线 | 国产精品久久久久久久第一福利| 日本一不卡视频| 欧美一级高清大全免费观看| 久久国产成人午夜av影院| 精品国产精品一区二区夜夜嗨| 国产精品自产自拍| 亚洲欧洲韩国日本视频| 91久久奴性调教| 青娱乐精品在线视频| 久久久www成人免费毛片麻豆 | 99久久精品国产导航| 一级特黄大欧美久久久| 这里是久久伊人| 国产麻豆午夜三级精品| 亚洲色大成网站www久久九九| 欧美日精品一区视频| 久久精品国产99久久6| 国产精品久久久久一区| 91.麻豆视频| 国产黄色精品网站| 亚洲一区二区三区自拍| 精品国产乱码久久久久久久| 色综合天天综合| 蜜桃视频免费观看一区| 国产精品久久久久一区二区三区共 | 国产日本欧洲亚洲| 欧美色图在线观看| 国产精华液一区二区三区| 亚洲最新在线观看| 久久久久亚洲蜜桃| 欧美日韩精品一区二区在线播放| 国产精品99精品久久免费| 亚洲一区欧美一区| 国产日韩影视精品| 日韩视频在线永久播放| 色av综合在线| 国产成人在线观看免费网站| 亚洲国产婷婷综合在线精品| 久久久www成人免费毛片麻豆| 欧美色图在线观看| 99精品视频一区二区| 久久精品国产亚洲5555| 亚洲成人av电影| 亚洲视频在线一区观看| 久久婷婷综合激情| 在线不卡a资源高清| 一本一本久久a久久精品综合麻豆| 国产精品1区2区| 欧美一卡2卡三卡4卡5免费| 亚洲va韩国va欧美va精品| 色天天综合久久久久综合片| 国产麻豆成人精品| 免费在线观看不卡| 五月婷婷欧美视频| 亚洲在线视频一区| 亚洲免费av高清| 亚洲欧洲性图库| 亚洲国产精品成人综合色在线婷婷 | 国产精品一区二区无线| 美女视频一区二区| 蜜桃视频一区二区三区在线观看| 亚洲永久精品国产| 亚洲黄色av一区| 亚洲欧美日韩国产另类专区| 国产精品久久久久婷婷二区次| 久久久久国产精品厨房| 久久综合成人精品亚洲另类欧美| 在线播放中文字幕一区| 欧美午夜视频网站| 666欧美在线视频| 日韩—二三区免费观看av| 洋洋成人永久网站入口| 国产精品久久久久久一区二区三区| 精品国产乱码久久久久久1区2区| 日韩午夜精品电影| 日韩午夜av一区| 2020国产精品| 中文字幕乱码一区二区免费| 久久久精品欧美丰满| 国产人久久人人人人爽| 一区二区中文字幕在线| 亚洲美女精品一区| 亚洲成人动漫精品| 日本va欧美va精品发布| 视频一区二区三区入口| 三级亚洲高清视频| 久久福利资源站| 国产成人夜色高潮福利影视| 99视频精品免费视频| 91免费版pro下载短视频| 欧美在线不卡一区| 日韩女同互慰一区二区| 欧美激情一区二区三区蜜桃视频 | 日韩久久久精品| 久久久久久久性| 中文字幕一区二区三区四区不卡 | 亚洲日韩欧美一区二区在线| 亚洲日本免费电影| 亚洲第一狼人社区| 看电影不卡的网站| 蜜桃视频一区二区三区在线观看| 国产一区二区0| 91国模大尺度私拍在线视频| 久久久99精品免费观看不卡| 日一区二区三区| 国产精品久久久久久久裸模 | 亚洲人成网站精品片在线观看| 亚洲国产日韩在线一区模特| 毛片av一区二区| 成人av在线网站| 制服视频三区第一页精品| 久久精品人人爽人人爽| 一区二区三区欧美| 国产在线精品一区二区| 欧美中文字幕久久| 国产日韩欧美不卡在线| 亚洲一区二区三区中文字幕在线| 国产自产v一区二区三区c| 在线视频国内自拍亚洲视频| 日韩一区二区三区免费观看| 国产女主播视频一区二区| 丝袜美腿高跟呻吟高潮一区| 丁香婷婷综合网| 日韩三级伦理片妻子的秘密按摩| 亚洲猫色日本管| 最新成人av在线| 精品一区二区在线视频| 欧美亚洲综合色| 欧美国产日韩一二三区| 日韩在线卡一卡二| 欧美日韩在线观看一区二区 | 欧美精品一区二区三区蜜桃视频| 亚洲精品亚洲人成人网在线播放| 国产一区999| 欧美一区二区在线播放| 一级做a爱片久久| 成人黄色小视频在线观看| 精品国产精品网麻豆系列| 亚洲1区2区3区4区| 91香蕉视频在线| 欧美韩国日本综合| 国产精品一区二区三区网站| 欧美一区二区免费| 亚洲国产乱码最新视频| 91丨porny丨蝌蚪视频| 久久久久88色偷偷免费| 老司机午夜精品99久久| 91精品国产综合久久久蜜臀粉嫩 | 678五月天丁香亚洲综合网| 一区二区三区.www| 99免费精品视频| 成人欧美一区二区三区白人| 国产精品一线二线三线精华| 日韩三级免费观看| 蜜桃一区二区三区在线| 日韩美女视频在线| 久久国产精品72免费观看| 日韩欧美一区二区免费| 免费的成人av| 欧美大片顶级少妇| 狠狠狠色丁香婷婷综合激情| 日韩你懂的在线观看| 久久国产精品99精品国产| 亚洲精品一区二区三区影院| 韩日精品视频一区| 国产欧美一区二区在线观看| 国产成人综合在线| 国产精品理伦片| 91天堂素人约啪| 亚洲蜜臀av乱码久久精品蜜桃| 日本乱人伦一区| 日韩一区二区三免费高清| 欧美撒尿777hd撒尿| 日韩精品一区在线观看| 男人的天堂久久精品| 欧美一区二区精品在线| 激情五月激情综合网| 久久久激情视频| 97se亚洲国产综合自在线| 亚洲欧美国产高清| 中文字幕中文字幕在线一区| 99国产精品久久久久| 亚洲电影一区二区| 日韩视频在线观看一区二区| 久久超碰97人人做人人爱| 国产人久久人人人人爽| 91一区在线观看| 婷婷夜色潮精品综合在线| 日韩欧美一级在线播放| 国产高清成人在线| 亚洲欧美日韩国产另类专区| 在线综合视频播放| 国产精品白丝jk黑袜喷水| 成人欧美一区二区三区| 欧美一级片免费看| 成人污视频在线观看| 亚洲成在人线在线播放| 精品国产一区二区三区久久久蜜月| 成人99免费视频|