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

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

?? spring-beans-2.0.xsd

?? 網(wǎng)上拍賣系統(tǒng)
?? XSD
?? 第 1 頁 / 共 3 頁
字號:
					<xsd:attribute name="bean" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the referenced bean.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
					<xsd:attribute name="local" type="xsd:IDREF">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the referenced bean. The value must be a bean ID,
	and thus can be checked by the XML parser, thus should be preferred
	for references within the same bean factory XML file.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
					<xsd:attribute name="parent" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the referenced bean *in a parent factory*.
						]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
				</xsd:restriction>
			</xsd:complexContent>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="idref">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	The id of another bean in this factory or an external factory
	(parent or included factory).
	While a regular 'value' element could instead be used for the
	same effect, using idref in this case allows validation of local
	bean ids by the XML parser, and name completion by supporting tools.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:complexContent>
				<xsd:restriction base="xsd:anyType">
					<xsd:attribute name="bean" type="xsd:string">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the referenced bean.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
					<xsd:attribute name="local" type="xsd:IDREF">
						<xsd:annotation>
							<xsd:documentation><![CDATA[
	The name of the referenced bean. The value must be a bean ID,
	and thus can be checked by the XML parser, thus should be preferred
	for references within the same bean factory XML file.
							]]></xsd:documentation>
						</xsd:annotation>
					</xsd:attribute>
				</xsd:restriction>
			</xsd:complexContent>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="value">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Contains a string representation of a property value.
	The property may be a string, or may be converted to the required
	type using the JavaBeans PropertyEditor machinery. This makes it
	possible for application developers to write custom PropertyEditor
	implementations that can convert strings to arbitrary target objects.

	Note that this is recommended for simple objects only. Configure
	more complex objects by populating JavaBean properties with
	references to other beans.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType mixed="true">
			<xsd:choice minOccurs="0" maxOccurs="unbounded"/>
			<xsd:attribute name="type" type="xsd:string">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	The exact type that the value should be converted to. Only needed
	if the type of the target property or constructor argument is
	too generic: for example, in case of a collection element.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="null">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Denotes a Java null value. Necessary because an empty "value" tag
	will resolve to an empty String, which will not be resolved to a
	null value unless a special PropertyEditor does so.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType mixed="true">
			<xsd:choice minOccurs="0" maxOccurs="unbounded"/>
		</xsd:complexType>
	</xsd:element>

	<!-- Collection Elements -->
	<xsd:group name="collectionElements">
		<xsd:sequence>
			<xsd:choice minOccurs="0" maxOccurs="unbounded">
				<xsd:element ref="bean"/>
				<xsd:element ref="ref"/>
				<xsd:element ref="idref"/>
				<xsd:element ref="value"/>
				<xsd:element ref="null"/>
				<xsd:element ref="list"/>
				<xsd:element ref="set"/>
				<xsd:element ref="map"/>
				<xsd:element ref="props"/>
				<xsd:any namespace="##other" processContents="strict" minOccurs="0" maxOccurs="unbounded"/>
			</xsd:choice>
		</xsd:sequence>
	</xsd:group>

	<xsd:element name="list" type="listOrSetType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A list can contain multiple inner bean, ref, collection, or value
	elements. Java lists are untyped, pending generics support in Java5,
	although references will be strongly typed. A list can also map to
	an array type. The necessary conversion is automatically performed
	by the BeanFactory.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="set" type="listOrSetType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A set can contain multiple inner bean, ref, collection, or value
	elements. Java sets are untyped, pending generics support in Java5,
	although references will be strongly typed.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="map" type="mapType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A mapping from a key to an object. Maps may be empty.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="entry" type="entryType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A map entry can be an inner bean, ref, value, or collection.
	The key of the entry is given by the "key" attribute or child element.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:element name="props" type="propsType">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	Props elements differ from map elements in that values must be strings.
	Props may be empty.
			]]></xsd:documentation>
		</xsd:annotation>
	</xsd:element>

	<xsd:element name="key">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	A key element can contain an inner bean, ref, value, or collection.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType>
			<xsd:group ref="collectionElements"/>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="prop">
		<xsd:annotation>
			<xsd:documentation><![CDATA[
	The string value of the property. Note that whitespace is trimmed
	off to avoid unwanted whitespace caused by typical XML formatting.
			]]></xsd:documentation>
		</xsd:annotation>
		<xsd:complexType mixed="true">
			<xsd:choice minOccurs="0" maxOccurs="unbounded"/>
			<xsd:attribute name="key" type="xsd:string" use="required">
				<xsd:annotation>
					<xsd:documentation><![CDATA[
	The key of the property entry.
					]]></xsd:documentation>
				</xsd:annotation>
			</xsd:attribute>
		</xsd:complexType>
	</xsd:element>

	<xsd:complexType name="propertyType">
		<xsd:sequence>
			<xsd:element ref="description" minOccurs="0"/>
			<xsd:choice minOccurs="0" maxOccurs="1">
				<xsd:element ref="meta"/>
				<xsd:element ref="bean"/>
				<xsd:element ref="ref"/>
				<xsd:element ref="idref"/>
				<xsd:element ref="value"/>
				<xsd:element ref="null"/>
				<xsd:element ref="list"/>
				<xsd:element ref="set"/>
				<xsd:element ref="map"/>
				<xsd:element ref="props"/>
				<xsd:any namespace="##other" processContents="strict"/>
			</xsd:choice>
		</xsd:sequence>
		<xsd:attribute name="name" type="xsd:string" use="required">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	The name of the property, following JavaBean naming conventions.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="ref" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<ref bean='...'/>".
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="value" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<value>...</value>"
	element.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<!-- Collection Types -->

	<!-- base collection type -->
	<xsd:complexType name="baseCollectionType">
		<xsd:attribute name="merge" type="defaultable-boolean">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Enables/disables merging for collections when using parent/child beans.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<!-- base type for collections that have (possibly) typed nested values -->
	<xsd:complexType name="typedCollectionType">
		<xsd:complexContent>
			<xsd:extension base="baseCollectionType">
				<xsd:attribute name="value-type" type="xsd:string">
					<xsd:annotation>
						<xsd:documentation source="java:java.lang.Class"><![CDATA[
	The default Java type for nested values. Must be a fully qualified
	class name.
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:attribute>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<!-- 'map' element type -->
	<xsd:complexType name="mapType">
		<xsd:complexContent>
			<xsd:extension base="typedCollectionType">
				<xsd:sequence>
					<xsd:choice minOccurs="0" maxOccurs="unbounded">
						<xsd:element ref="entry"/>
					</xsd:choice>
				</xsd:sequence>
				<xsd:attribute name="key-type" type="xsd:string">
					<xsd:annotation>
						<xsd:documentation source="java:java.lang.Class"><![CDATA[
	The default Java type for nested entry keys. Must be a fully qualified
	class name. 	
						]]></xsd:documentation>
					</xsd:annotation>
				</xsd:attribute>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<!-- 'entry' element type -->
	<xsd:complexType name="entryType">
		<xsd:sequence>
			<xsd:element ref="key" minOccurs="0"/>
			<xsd:group ref="collectionElements"/>
		</xsd:sequence>
		<xsd:attribute name="key" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	Each map element must specify its key as attribute or as child element.
	A key attribute is always a String value.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="key-ref" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A short-cut alternative to a to a "key" element with a nested
	"<ref bean='...'/>".
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="value" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<value>...</value>"
	element.
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
		<xsd:attribute name="value-ref" type="xsd:string">
			<xsd:annotation>
				<xsd:documentation><![CDATA[
	A short-cut alternative to a nested "<ref bean='...'/>".
				]]></xsd:documentation>
			</xsd:annotation>
		</xsd:attribute>
	</xsd:complexType>

	<!-- 'list' and 'set' collection type -->
	<xsd:complexType name="listOrSetType">
		<xsd:complexContent>
			<xsd:extension base="typedCollectionType">
				<xsd:group ref="collectionElements"/>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<!-- 'props' collection type -->
	<xsd:complexType name="propsType">
		<xsd:complexContent>
			<xsd:extension base="baseCollectionType">
				<xsd:sequence>
					<xsd:choice minOccurs="0" maxOccurs="unbounded">
						<xsd:element ref="prop"/>
					</xsd:choice>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<!-- simple internal types -->
	<xsd:simpleType name="defaultable-boolean">
		<xsd:restriction base="xsd:NMTOKEN">
			<xsd:enumeration value="default"/>
			<xsd:enumeration value="true"/>
			<xsd:enumeration value="false"/>
		</xsd:restriction>
	</xsd:simpleType>

</xsd:schema>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看一区二区精品视频| 91网站最新网址| 天天射综合影视| 亚洲第一激情av| 亚洲r级在线视频| 日韩高清不卡一区| 六月丁香婷婷久久| 国产一区高清在线| 国产一区二区伦理片| 高清视频一区二区| 色欧美乱欧美15图片| 欧美美女喷水视频| 日韩久久久久久| 久久精品日产第一区二区三区高清版| 久久综合国产精品| 国产精品二三区| 亚洲一区二区三区国产| 日韩电影在线一区| 粉嫩在线一区二区三区视频| a美女胸又www黄视频久久| 欧美亚洲免费在线一区| 欧美一区二区在线不卡| 久久精品视频一区| 亚洲国产精品视频| 极品少妇xxxx精品少妇偷拍| kk眼镜猥琐国模调教系列一区二区| 色乱码一区二区三区88| 日韩欧美在线观看一区二区三区| 国产亚洲一区二区在线观看| 一区二区三区精品在线| 久久国产精品72免费观看| 不卡av免费在线观看| 91精品国产综合久久国产大片| 久久九九全国免费| 天堂一区二区在线| 国产99久久久国产精品潘金| 欧美三级韩国三级日本三斤| 精品国产一二三区| 亚洲综合免费观看高清完整版在线| 久久国产福利国产秒拍| 日本乱人伦一区| 国产免费成人在线视频| 午夜视频一区在线观看| 99久久国产综合色|国产精品| 日韩欧美资源站| 亚州成人在线电影| 波多野结衣在线一区| 精品国产伦一区二区三区观看体验| 一区二区三区国产豹纹内裤在线| 国产麻豆欧美日韩一区| 欧美一级午夜免费电影| 一区二区三区色| 99久久99久久综合| 中文字幕电影一区| 国产资源在线一区| 日韩一区二区三区视频在线观看| 艳妇臀荡乳欲伦亚洲一区| av亚洲精华国产精华精| 国产亚洲欧洲997久久综合| 男女男精品视频网| 欧美另类z0zxhd电影| 亚洲精品视频免费观看| 国产a久久麻豆| 久久久99精品免费观看不卡| 久久超级碰视频| 精品国产露脸精彩对白| 天堂成人免费av电影一区| 在线视频你懂得一区二区三区| 1区2区3区精品视频| 99久久免费视频.com| 中文字幕日韩精品一区| gogogo免费视频观看亚洲一| 亚洲欧洲日产国产综合网| 99久久精品国产一区| 一区在线播放视频| 日本韩国欧美国产| 香蕉影视欧美成人| 91麻豆精品国产| 美脚の诱脚舐め脚责91| 欧美xxxxxxxx| 国产不卡在线视频| 亚洲男人的天堂一区二区| 一本一道波多野结衣一区二区| 亚洲人成小说网站色在线| 91日韩在线专区| 亚洲综合一二三区| 日韩一级免费观看| 粉嫩av一区二区三区粉嫩| 中文字幕一区二区三区视频| 在线观看成人小视频| 爽好久久久欧美精品| 26uuu欧美| 99久久精品国产毛片| 亚洲成人免费视频| 久久综合狠狠综合| 色婷婷综合久久久久中文一区二区 | 国产精品91xxx| 亚洲欧美自拍偷拍色图| 欧美精品粉嫩高潮一区二区| 国产综合一区二区| 亚洲免费在线播放| 欧美精品一区二区三区久久久| gogo大胆日本视频一区| 亚洲成a人v欧美综合天堂| 久久久久88色偷偷免费| 在线观看区一区二| 狠狠久久亚洲欧美| 一区二区三区日韩在线观看| 精品三级在线观看| 在线精品亚洲一区二区不卡| 精品一区二区三区日韩| 亚洲欧美一区二区三区极速播放| 91精品国产综合久久久蜜臀粉嫩| 国产91在线观看丝袜| 日韩在线卡一卡二| 中文字幕欧美日本乱码一线二线| 欧美性感一区二区三区| 成人午夜电影网站| 日本在线不卡一区| 亚洲欧美乱综合| 国产欧美日韩综合精品一区二区| 欧美性色欧美a在线播放| 成人黄色小视频| 国产在线视频一区二区三区| 亚洲一区二区三区爽爽爽爽爽| 中文字幕成人网| 久久久不卡影院| 欧美xxxxxxxx| 日韩丝袜美女视频| 欧美日韩一区视频| 色综合色综合色综合| 懂色av一区二区三区蜜臀| 免费精品99久久国产综合精品| 亚洲综合久久av| 亚洲激情av在线| 国产精品电影一区二区三区| 26uuu国产日韩综合| 日韩你懂的在线观看| 欧美日本一区二区在线观看| 色婷婷久久久久swag精品| 丁香婷婷深情五月亚洲| 国产经典欧美精品| 精品系列免费在线观看| 久久97超碰色| 韩日欧美一区二区三区| 国产原创一区二区| 九九热在线视频观看这里只有精品| 亚洲国产精品视频| 亚洲狠狠爱一区二区三区| 亚洲第一激情av| 婷婷综合五月天| 日韩黄色片在线观看| 日韩主播视频在线| 麻豆极品一区二区三区| 激情五月婷婷综合| 国产精品亚洲成人| 92精品国产成人观看免费| 99久久亚洲一区二区三区青草| 99久久精品国产一区| 色综合激情五月| 欧美精品1区2区3区| 国产91清纯白嫩初高中在线观看| 樱桃视频在线观看一区| 亚洲精选一二三| 亚洲国产成人av好男人在线观看| 亚洲18女电影在线观看| 久久国产乱子精品免费女| 国产精品自拍三区| 91在线视频免费91| 精品视频色一区| 精品国产伦理网| 国产精品欧美一区喷水| 一区二区国产视频| 精品一区二区三区在线观看国产| 国产精品99久久久久久似苏梦涵| 国产精品一区二区免费不卡| 国产**成人网毛片九色| 色av综合在线| 日韩三级精品电影久久久| 日本一区二区三区在线观看| 亚洲品质自拍视频网站| 亚洲免费观看高清完整版在线观看| 亚洲制服丝袜在线| 国产一区二区女| 成人做爰69片免费看网站| 91视频xxxx| 日韩手机在线导航| 亚洲欧美精品午睡沙发| 蜜桃一区二区三区在线观看| av色综合久久天堂av综合| 欧美日韩在线观看一区二区| 欧美电影免费观看高清完整版| 国产丝袜在线精品| 午夜精品在线看| 国产91精品精华液一区二区三区| 欧美亚日韩国产aⅴ精品中极品| 欧美一区二区三区在线观看| 中文字幕一区免费在线观看| 久久精品国产精品亚洲红杏| 日本电影欧美片|