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

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

?? jpdl-3.0.xsd

?? jbpm demo 是一款非常不錯的開源工作流,簡單易用,適合擴張開發!
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="fork">
		<xs:annotation>
			<xs:documentation>Defines a point in the processing path where multiple execution paths will run in parallel.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="script" minOccurs="0"/>
				<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:complexType>
	</xs:element>
	<xs:element name="join">
		<xs:annotation>
			<xs:documentation>Defines a point in the processing path where multiple execution paths merge into one path.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<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:complexType>
	</xs:element>
	<xs:element name="node">
		<xs:annotation>
			<xs:documentation>A generic node allowing custom behavior.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0" maxOccurs="1">
					<xs:annotation>
						<xs:documentation>A custom action that represents the behaviour for this node</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="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:complexType>
	</xs:element>
	<xs:element name="process-state">
		<xs:annotation>
			<xs:documentation>A node that allows execution of another subordinate process.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element name="sub-process">
					<xs:complexType>
						<xs:attribute name="name" type="xs:string" use="required">
							<xs:annotation>
								<xs:documentation>The name of the subordinate process definition to be executed within the enclosing process.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
						<xs:attribute name="version" type="xs:integer" use="optional">
							<xs:annotation>
								<xs:documentation>The version of the deployed process-definition that is to be executed.  If none is specified the latest version of the identified process will be used.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element ref="variable" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supported event types: node-enter, node-leave, before-signal, after-signal, subprocess-created, subprocess-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="subprocess-created"/>
									<xs:enumeration value="subprocess-end"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<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:complexType>
	</xs:element>
	<xs:element name="script">
		<xs:annotation>
			<xs:documentation>A beanshell script to execute.  The script can be the content of this tag or you can specify one or more variables and a beanshell script in the expression tag.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence minOccurs="0">
				<xs:element ref="variable" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="expression">
					<xs:annotation>
						<xs:documentation>The beanshell script.</xs:documentation>
					</xs:annotation>
				</xs:element>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="optional">
				<xs:annotation>
					<xs:documentation>The name of the script action.  When actions are given names, they can be looked up from the process definition.  This can be useful for runtime actions and declaring actions only once.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
			<xs:attribute name="accept-propagated-events" type="booleanType" use="optional" default="true">
				<xs:annotation>
					<xs:documentation>If set to false the action will only be executed on events that were fired in this action's element.</xs:documentation>
				</xs:annotation>
			</xs:attribute>
		</xs:complexType>
	</xs:element>
	<xs:element name="state">
		<xs:annotation>
			<xs:documentation>Represents a wait state in a process.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:choice minOccurs="0">
					<xs:annotation>
						<xs:documentation>A custom action that represents the behaviour for this node</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="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:complexType>
	</xs:element>
	<xs:element name="super-state">
		<xs:annotation>
			<xs:documentation>Grouping mechanism for a named set of nodes.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<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:element ref="transition" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supports all event types except the process-start and end events.</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:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<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:complexType>
	</xs:element>
	<xs:element name="swimlane">
		<xs:annotation>
			<xs:documentation>Groups tasks assigned to the same resource.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="assignment" minOccurs="0"/>
			</xs:sequence>
			<xs:attribute name="name" type="xs:string" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:element name="task">
		<xs:annotation>
			<xs:documentation>The tasks that should be created when execution arrives in this task node.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="assignment" minOccurs="0"/>
				<xs:element name="controller" minOccurs="0">
					<xs:annotation>
						<xs:documentation>Controller supports the inclusion of one or more "variable" tags as children.  It also supports custom XML for use with a custom controller class as indicated by config-type.</xs:documentation>
					</xs:annotation>
					<xs:complexType>
						<xs:sequence>
							<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
								<xs:annotation>
									<xs:documentation>This section can include "variable" elements to identify input and output variables involved in this task.</xs:documentation>
								</xs:annotation>
							</xs:any>
						</xs:sequence>
						<xs:attribute name="class" type="xs:string" use="optional"/>
						<xs:attribute name="config-type" type="configType" use="optional">
							<xs:annotation>
								<xs:documentation>Specifies how the assignment handler object should be constructed and how the content of this element should be used as configuration information for that object.</xs:documentation>
							</xs:annotation>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element name="event" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Supports events:  task-create, task-assign, task-start, task-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="task-create"/>
									<xs:enumeration value="task-start"/>
									<xs:enumeration value="task-assign"/>
									<xs:enumeration value="task-end"/>
								</xs:restriction>
							</xs:simpleType>
						</xs:attribute>
					</xs:complexType>
				</xs:element>
				<xs:element name="timer" minOccurs="0" maxOccurs="unbounded">
					<xs:annotation>
						<xs:documentation>Specifies a timer that monitors the duration of an execution in this task.</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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人激情免费网站| 久久草av在线| 色婷婷综合激情| 国产精品狼人久久影院观看方式| 国产精品一区二区果冻传媒| 久久亚洲免费视频| 97精品久久久久中文字幕| 亚洲黄网站在线观看| 欧美综合亚洲图片综合区| 亚洲电影一区二区三区| 日韩一区二区三区三四区视频在线观看| 亚洲电影你懂得| 久久伊99综合婷婷久久伊| 北岛玲一区二区三区四区| 亚洲精品视频在线| 日韩一区二区在线观看| 国产91富婆露脸刺激对白| 亚洲精品自拍动漫在线| 欧美一区在线视频| 成人黄色综合网站| 亚洲成a人v欧美综合天堂| 久久久精品日韩欧美| 在线一区二区三区四区| 久草这里只有精品视频| 亚洲欧美日韩一区二区三区在线观看 | 亚洲综合色自拍一区| 日韩亚洲欧美成人一区| 成人免费高清在线| 成人激情视频网站| 综合久久久久综合| 91成人免费网站| 日韩电影免费在线| 成人激情开心网| 日本一区二区动态图| 午夜精品免费在线| 欧美一区二区视频在线观看2022| 亚洲视频狠狠干| 欧美最猛性xxxxx直播| 亚洲美女电影在线| 免费在线成人网| av亚洲精华国产精华| 91日韩在线专区| 久久久久久**毛片大全| 亚洲一本大道在线| 精品区一区二区| 欧美日韩国产电影| 国产一本一道久久香蕉| 国产精品麻豆99久久久久久| 久久99精品视频| 日韩一区二区三区观看| 免费成人性网站| 欧美精品三级日韩久久| 亚洲成人精品影院| 7777精品伊人久久久大香线蕉最新版| 亚洲激情五月婷婷| 91麻豆精品久久久久蜜臀| 亚洲国产精品久久人人爱| 欧洲视频一区二区| 美女www一区二区| 久久久蜜臀国产一区二区| 懂色一区二区三区免费观看| 亚洲欧美日韩电影| 制服丝袜av成人在线看| 日韩黄色免费电影| 中文字幕欧美激情| 欧美乱妇23p| 粉嫩欧美一区二区三区高清影视| 污片在线观看一区二区| 日韩美女精品在线| 国产欧美va欧美不卡在线| 久久综合精品国产一区二区三区 | 91福利在线观看| 综合分类小说区另类春色亚洲小说欧美 | 99久久精品99国产精品| 欧美经典一区二区三区| 欧美美女网站色| 欧洲日韩一区二区三区| 99精品热视频| 97se亚洲国产综合自在线| av在线不卡免费看| aaa欧美日韩| 亚洲国产精品精华液网站| 中文字幕欧美日本乱码一线二线| 欧美精品精品一区| 色成年激情久久综合| 欧美日韩国产中文| 精品无人码麻豆乱码1区2区| 欧美精品一区二区三区四区 | 色综合中文字幕国产 | 亚洲一区二区免费视频| 欧美96一区二区免费视频| 亚洲h在线观看| 成人v精品蜜桃久久一区| 日韩一区二区在线观看| 一区二区视频在线看| 国内精品嫩模私拍在线| 日韩欧美卡一卡二| 日韩制服丝袜先锋影音| 欧美三级电影在线看| 中文字幕免费不卡在线| 国产大陆精品国产| 久久精品水蜜桃av综合天堂| 久久69国产一区二区蜜臀 | 天堂成人国产精品一区| 日本道色综合久久| 亚洲视频一区二区在线| 99精品国产一区二区三区不卡| 日本一区二区三区dvd视频在线| 激情综合一区二区三区| 久久久久久亚洲综合| 国产精品亚洲а∨天堂免在线| 国产日韩欧美精品在线| 粉嫩13p一区二区三区| 亚洲精品成人悠悠色影视| 亚洲第一二三四区| 国产suv精品一区二区三区| 色伊人久久综合中文字幕| 欧美日韩视频一区二区| 久久你懂得1024| 蜜桃视频一区二区| 精品在线一区二区| 中文字幕一区二区在线播放| 国产精品人妖ts系列视频| 亚洲成年人网站在线观看| 男女性色大片免费观看一区二区 | 国产日产欧产精品推荐色 | 天天综合网 天天综合色| 国产精品99久久久久久宅男| 91国产精品成人| 久久久无码精品亚洲日韩按摩| 亚洲一区二区精品视频| 国产成人在线免费| 91精品国产综合久久久久久| 最新不卡av在线| 精品一区二区免费在线观看| 在线观看国产一区二区| 日本一区二区三区国色天香| 蜜臀久久99精品久久久画质超高清| 99re这里只有精品视频首页| 日韩欧美电影在线| 午夜私人影院久久久久| 91在线无精精品入口| 精品国产精品网麻豆系列| 亚洲va天堂va国产va久| 一本色道久久综合狠狠躁的推荐| 久久综合五月天婷婷伊人| 婷婷丁香激情综合| 欧美在线观看视频在线| 亚洲欧美自拍偷拍色图| 国产成人午夜视频| 精品免费视频.| 免费成人小视频| 日韩午夜小视频| 亚洲大片免费看| 欧洲一区在线电影| 亚洲欧美一区二区三区孕妇| 国产·精品毛片| 欧美—级在线免费片| 经典三级视频一区| 26uuuu精品一区二区| 麻豆精品精品国产自在97香蕉| 欧美剧在线免费观看网站| 亚洲一区二区精品视频| 欧美性猛片aaaaaaa做受| 亚洲欧美日韩国产中文在线| av不卡一区二区三区| 国产精品国产三级国产普通话蜜臀| 国产乱淫av一区二区三区| 2023国产精品| 大尺度一区二区| 欧美激情中文不卡| 99久久伊人网影院| 中文字幕中文在线不卡住| 91免费在线看| 亚洲欧美成aⅴ人在线观看| 色婷婷综合在线| 亚洲一区在线视频| 欧美福利一区二区| 蜜乳av一区二区三区| 欧美精品一区二区三区四区| 国产乱对白刺激视频不卡| 国产调教视频一区| 99久久精品免费观看| 亚洲人成网站影音先锋播放| 91久久精品日日躁夜夜躁欧美| 亚洲男人的天堂av| 欧美人与禽zozo性伦| 精品制服美女久久| 国产精品丝袜一区| 欧美性色欧美a在线播放| 香蕉影视欧美成人| 久久你懂得1024| 色综合激情五月| 肉肉av福利一精品导航| 精品国产自在久精品国产| gogo大胆日本视频一区| 亚洲一二三区在线观看| 日韩午夜激情av| 99在线精品一区二区三区| 亚洲午夜免费福利视频|