diff options
author | Ralf Sternberg | 2012-11-16 15:41:18 +0000 |
---|---|---|
committer | Ralf Sternberg | 2012-11-16 15:42:24 +0000 |
commit | 2bb348f0dee51155104d68535ac533d302df418f (patch) | |
tree | c13149c43084a8c629b6cd0d1c660abd3e0d81a1 /bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd | |
parent | b911d3b1497ac2556df0db360c1b221d90e2902d (diff) | |
download | org.eclipse.rap-2bb348f0dee51155104d68535ac533d302df418f.tar.gz org.eclipse.rap-2bb348f0dee51155104d68535ac533d302df418f.tar.xz org.eclipse.rap-2bb348f0dee51155104d68535ac533d302df418f.zip |
Adjust extension points to changed namespace
See bug 394456: Classes in extension points must be adjusted to
namespace change
https://bugs.eclipse.org/bugs/show_bug.cgi?id=394456
Diffstat (limited to 'bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd')
-rw-r--r-- | bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd b/bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd index 5476e47c2a..24c6d6a473 100644 --- a/bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd +++ b/bundles/org.eclipse.rap.ui/schema/rap/settingstores.exsd @@ -14,16 +14,16 @@ Developers that want to implement their own setting store must provide a setting <p> Note that at runtime only <b>one</b> (out of all available) factories will be used to create new <code>ISettingStore</code> instances. Which factory is used can be controlled in two ways: <ul> -<li>In a normal RAP deployment you can specify the factory to be used by placing the following property in the OSGi config.ini file: <code>org.eclipse.rwt.settingStoreFactory=<i>id</i></code> where <i>id</i> identifies a particular factory element. Example: +<li>In a normal RAP deployment you can specify the factory to be used by placing the following property in the OSGi config.ini file: <code>org.eclipse.rap.rwt.settingStoreFactory=<i>id</i></code> where <i>id</i> identifies a particular factory element. Example: <pre> -org.eclipse.rwt.settingStoreFactory=file +org.eclipse.rap.rwt.settingStoreFactory=file </pre> </li> <li>In an RWT-only deployment you can specify the factory to be used by placing the following snippet in the web.xml file:<br> <pre> &lt;init-param&gt; - &lt;param-name&gt;org.eclipse.rwt.settingStoreFactory&lt;/param-name&gt; - &lt;param-value&gt;org.eclipse.rwt.service.RWTFileSettingStoreFactory&lt;/param-value&gt; + &lt;param-name&gt;org.eclipse.rap.rwt.settingStoreFactory&lt;/param-name&gt; + &lt;param-value&gt;org.eclipse.rap.rwt.service.RWTFileSettingStoreFactory&lt;/param-value&gt; &lt;/init-param&gt; </pre> <li>If nothing is specified, the class <code>WorkbenchFileSettingStoreFactory</code> will be used in a regular RAP deployment. In an RWT only deployment the class <code>RWTFileSettingStoreFactory</code> will be used instead.</li> @@ -88,10 +88,10 @@ org.eclipse.rwt.settingStoreFactory=file <attribute name="class" type="string" use="required"> <annotation> <documentation> - a fully qualified name of the class implementing the <code>org.eclipse.rwt.service.ISettingStoreFactory</code> interface. + a fully qualified name of the class implementing the <code>org.eclipse.rap.rwt.service.ISettingStoreFactory</code> interface. </documentation> <appInfo> - <meta.attribute kind="java" basedOn=":org.eclipse.rwt.service.ISettingStoreFactory"/> + <meta.attribute kind="java" basedOn=":org.eclipse.rap.rwt.service.ISettingStoreFactory"/> </appInfo> </annotation> </attribute> @@ -120,7 +120,7 @@ org.eclipse.rwt.settingStoreFactory=file id="file"> </factory> <factory - class="org.eclipse.rwt.service.RWTFileSettingStoreFactory" + class="org.eclipse.rap.rwt.service.RWTFileSettingStoreFactory" id="rwtfile"> </factory> </extension> @@ -133,7 +133,7 @@ org.eclipse.rwt.settingStoreFactory=file <meta.section type="apiInfo"/> </appInfo> <documentation> - To obtain a setting store use <code>RWT.getSettingStore()</code>. This will use the configured <code>org.eclipse.rwt.service.ISettingStoreFactory</code> to generate and return an appropriate <code>org.eclipse.rwt.service.ISettingStore</code> instance for this session. + To obtain a setting store use <code>RWT.getSettingStore()</code>. This will use the configured <code>org.eclipse.rap.rwt.service.ISettingStoreFactory</code> to generate and return an appropriate <code>org.eclipse.rap.rwt.service.ISettingStore</code> instance for this session. <p> Developers wishing to provide their own setting store must implement <code>ISettingStore</code> and <code>ISettingStoreFactory</code> and contribute their factory using this extension point. </documentation> |