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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? jpdl-3.0.xsd

?? workflow first jbpm
?? XSD
?? 第 1 頁 / 共 3 頁
字號(hào):
								<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>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美日韩电影| 亚洲欧美日韩久久| 午夜一区二区三区视频| 国产不卡视频在线观看| 日韩一区二区三区免费观看 | 成人黄色片在线观看| 欧美一级精品大片| 亚洲午夜免费视频| 97精品久久久久中文字幕| 久久精品夜夜夜夜久久| 九九视频精品免费| 欧美精品 日韩| 亚洲一区影音先锋| 在线中文字幕一区二区| 亚洲欧洲日韩综合一区二区| 国产精品77777| 亚洲精品国产成人久久av盗摄| 国产成都精品91一区二区三| 精品91自产拍在线观看一区| 麻豆91在线播放| 制服丝袜av成人在线看| 亚洲国产综合在线| 欧洲激情一区二区| 亚洲乱码国产乱码精品精可以看| 成人毛片老司机大片| 国产亚洲一区字幕| 国产福利精品导航| 国产亚洲美州欧州综合国| 国产在线精品一区二区| 精品对白一区国产伦| 久久99精品久久只有精品| 日韩欧美色电影| 六月丁香综合在线视频| 欧美tickling挠脚心丨vk| 久久99这里只有精品| 精品久久久久久久久久久久久久久 | 国产精品国产三级国产aⅴ原创| 国产超碰在线一区| 欧美国产精品久久| 成人午夜视频福利| 亚洲色图制服诱惑| 在线中文字幕不卡| 偷窥国产亚洲免费视频| 欧美一级久久久久久久大片| 久久国产乱子精品免费女| 精品国产伦理网| 国产麻豆精品久久一二三| 国产日韩欧美在线一区| www.欧美色图| 亚洲精品高清在线观看| 在线观看一区日韩| 视频一区二区国产| 精品久久人人做人人爽| 国产成人a级片| 日韩一区在线看| 欧美午夜精品理论片a级按摩| 亚洲国产欧美一区二区三区丁香婷| 欧美欧美午夜aⅴ在线观看| 免费高清在线一区| 国产欧美一区二区在线| 91视频观看免费| 天天操天天干天天综合网| 日韩一二三四区| 国产成a人无v码亚洲福利| 亚洲日本乱码在线观看| 欧美日韩三级一区| 久草这里只有精品视频| 国产精品国产自产拍高清av| 国产精品午夜免费| 91麻豆高清视频| 日韩精品高清不卡| 国产农村妇女毛片精品久久麻豆| 色婷婷综合中文久久一本| 婷婷综合在线观看| 久久久精品黄色| 91国内精品野花午夜精品| 另类小说视频一区二区| 国产精品久久久久久久久图文区| 欧美在线观看视频在线| 精品夜夜嗨av一区二区三区| 亚洲天堂av一区| 欧美一区二区成人| www.欧美亚洲| 免费观看成人鲁鲁鲁鲁鲁视频| 国产精品入口麻豆原神| 欧美美女视频在线观看| 国产999精品久久久久久绿帽| 亚洲综合色视频| 久久精品在线免费观看| 欧美日韩亚洲另类| 国产69精品久久久久毛片| 亚洲成a人v欧美综合天堂| 国产丝袜美腿一区二区三区| 欧美日韩色一区| 成人网页在线观看| 日本亚洲视频在线| 亚洲日本乱码在线观看| 亚洲精品一区二区三区在线观看 | 欧美探花视频资源| 国产毛片精品一区| 午夜亚洲国产au精品一区二区| 久久精品免视看| 91精品国产免费| 一本到不卡精品视频在线观看| 国产资源在线一区| 日韩中文字幕1| 亚洲人成网站色在线观看| 久久色.com| 91精品国产综合久久精品图片| 99热这里都是精品| 狠狠色狠狠色综合| 午夜伊人狠狠久久| 亚洲免费在线播放| 欧美国产日韩在线观看| 日韩欧美国产电影| 欧美性生活大片视频| aaa欧美日韩| 国产a区久久久| 激情五月激情综合网| 日韩av网站免费在线| 亚洲精品视频在线观看网站| 亚洲国产成人一区二区三区| 日韩欧美在线网站| 欧美巨大另类极品videosbest| 91污在线观看| av资源网一区| 成人性生交大片免费看中文网站| 久久99精品一区二区三区三区| 日韩福利电影在线| 亚洲bdsm女犯bdsm网站| 成人丝袜18视频在线观看| 狠狠色综合色综合网络| 日韩电影在线一区| 同产精品九九九| 亚洲3atv精品一区二区三区| 一区二区三区在线看| 日韩一区在线看| 国产精品久久久久久久岛一牛影视| 国产三级久久久| 国产午夜精品美女毛片视频| 久久久久久久久久看片| 精品久久国产97色综合| 日韩亚洲欧美成人一区| 51精品秘密在线观看| 欧美精品vⅰdeose4hd| 欧美高清视频在线高清观看mv色露露十八| 色婷婷综合久久久久中文| 色综合久久99| 欧美主播一区二区三区美女| 91福利国产成人精品照片| 91激情五月电影| 欧美亚洲尤物久久| 欧美情侣在线播放| 91精品国产色综合久久久蜜香臀| 91麻豆精品国产91久久久使用方法| 欧美挠脚心视频网站| 91麻豆精品国产91久久久| 7777精品久久久大香线蕉| 在线91免费看| 日韩欧美一级二级三级久久久| 日韩久久免费av| 久久精品一区四区| 国产精品久久一级| 一级做a爱片久久| 丝袜诱惑亚洲看片| 久久国产综合精品| 国产精品亚洲一区二区三区在线| 夫妻av一区二区| 91激情在线视频| 在线电影欧美成精品| 欧美精品一区男女天堂| 欧美国产日韩一二三区| 亚洲日本电影在线| 亚洲高清免费观看高清完整版在线观看| 亚洲成a天堂v人片| 精品系列免费在线观看| 国产传媒一区在线| 色悠悠久久综合| 91精品国产入口| 国产视频在线观看一区二区三区 | 亚洲国产精品久久艾草纯爱| 日本sm残虐另类| 国产成人自拍网| 91成人免费在线视频| 欧美一区二区女人| 国产欧美一区二区精品久导航| 一区二区三区在线看| 免费人成精品欧美精品| 成人性色生活片免费看爆迷你毛片| 91久久久免费一区二区| 日韩精品中文字幕在线不卡尤物 | 欧美日韩国产成人在线91| 精品国产三级a在线观看| 国产精品久久久久影院| 一区二区三区中文字幕精品精品| 美女一区二区在线观看| 成a人片亚洲日本久久| 欧美裸体一区二区三区| 国产丝袜欧美中文另类| 亚洲国产一区视频|