blob: c33a1824bee8827ec8b0800dc5267822936d0467 [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.rap.ui" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.rap.ui" id="resources" name="Resources"/>
</appInfo>
<documentation>
The &lt;code&gt;resources&lt;/code&gt; extension point is used to register static resources such as images or JavaScript files in order to make them available at for the client. The resource can be accessed by a URL that can be obtained by &lt;code&gt;RWT.getResourceManager().getLocation( String )&lt;/code&gt;.
</documentation>
</annotation>
<element name="extension">
<annotation>
<appInfo>
<meta.element />
</appInfo>
</annotation>
<complexType>
<sequence>
<element ref="resource" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<element name="resource">
<annotation>
<appInfo>
<meta.element labelAttribute="class"/>
</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>
An implementation of &lt;code&gt;org.eclipse.rap.ui.resources.IResource&lt;/code&gt; to define location, options and other aspects for this resource.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn=":org.eclipse.rap.ui.resources.IResource"/>
</appInfo>
</annotation>
</attribute>
</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"/>
</appInfo>
<documentation>
RAP 1.0
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
&lt;pre&gt;
&lt;extension
id=&quot;example.customwidget.customjs&quot;
point=&quot;org.eclipse.rap.ui.resources&quot;&gt;
&lt;resource class=&quot;example.customwidget.CustomJavaScriptResource&quot;/&gt;
&lt;/extension&gt;
&lt;/pre&gt;
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
Besides registering static resources with an extension you can also dynamically register new resources with the resource manager. Use &lt;code&gt;RWT.getResourceManager()&lt;/code&gt; to obtain the current resource manager instance.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
Copyright (c) 2007, 2015 EclipseSource and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at &lt;a
href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
</documentation>
</annotation>
</schema>