diff options
author | Ivan Furnadjiev | 2011-04-30 12:32:12 +0000 |
---|---|---|
committer | Ivan Furnadjiev | 2011-04-30 12:32:12 +0000 |
commit | 2c23c35376e19194a8e97619b13d2a2078b81694 (patch) | |
tree | 9a28ed7f3570479cb2f668fade730146513fabef /bundles/org.eclipse.rap.ui/schema | |
parent | 5b8220fd289ec0487f744be5513a681ada1fc192 (diff) | |
download | org.eclipse.rap-2c23c35376e19194a8e97619b13d2a2078b81694.tar.gz org.eclipse.rap-2c23c35376e19194a8e97619b13d2a2078b81694.tar.xz org.eclipse.rap-2c23c35376e19194a8e97619b13d2a2078b81694.zip |
Fixed - 321282: Loading Javascript resources from bundles with dependencies
https://bugs.eclipse.org/bugs/show_bug.cgi?id=321282
Diffstat (limited to 'bundles/org.eclipse.rap.ui/schema')
-rw-r--r-- | bundles/org.eclipse.rap.ui/schema/rap/resources.exsd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bundles/org.eclipse.rap.ui/schema/rap/resources.exsd b/bundles/org.eclipse.rap.ui/schema/rap/resources.exsd index 9de2b020d6..0a8ee93ea1 100644 --- a/bundles/org.eclipse.rap.ui/schema/rap/resources.exsd +++ b/bundles/org.eclipse.rap.ui/schema/rap/resources.exsd @@ -49,6 +49,16 @@ </appInfo> </annotation> <complexType> + <sequence minOccurs="0" maxOccurs="unbounded"> + <element ref="dependsOn"/> + </sequence> + <attribute name="id" type="string"> + <annotation> + <documentation> + An optional identifier of the resource instance. + </documentation> + </annotation> + </attribute> <attribute name="class" type="string" use="required"> <annotation> <documentation> @@ -62,6 +72,21 @@ </complexType> </element> + <element name="dependsOn"> + <complexType> + <attribute name="resourceId" type="string" use="required"> + <annotation> + <documentation> + The resourceId is used to identify the resource on which this resource depends on. + </documentation> + <appInfo> + <meta.attribute kind="identifier" basedOn="org.eclipse.rap.ui.resources/resource/@id"/> + </appInfo> + </annotation> + </attribute> + </complexType> + </element> + <annotation> <appInfo> <meta.section type="since"/> |