diff options
Diffstat (limited to 'bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd')
-rw-r--r-- | bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd b/bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd index 5c72041b12..92eebce7a5 100644 --- a/bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd +++ b/bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd @@ -26,21 +26,21 @@ A service handler can be accessed by a URL with a specific parameter. This URL c <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"/> @@ -55,7 +55,7 @@ A service handler can be accessed by a URL with a specific parameter. This URL c <attribute name="id" type="string" use="required"> <annotation> <documentation> - A unique ID for this service manager. This ID is used to obtain the URL to access the service manager. + A unique ID for this service handler. This ID is used to obtain the URL to access the service handler. </documentation> </annotation> </attribute> @@ -88,18 +88,17 @@ A service handler can be accessed by a URL with a specific parameter. This URL c <documentation> Here's an example of an extension that registers two service handlers: <pre> - <extension point="org.eclipse.rap.ui.serviceHandler"> - <serviceHandler - class="org.eclipse.rap.ui.impl.ServiceHandler1" - id="myHandler1"> - </serviceHandler> - <serviceHandler - class="org.eclipse.rap.ui.ServiceHandler2" - id="myHandler2"> - </serviceHandler> - </extension> +<extension point="org.eclipse.rap.ui.serviceHandler"> + <serviceHandler + class="org.eclipse.rap.ui.impl.ServiceHandler1" + id="myHandler1"> + </serviceHandler> + <serviceHandler + class="org.eclipse.rap.ui.ServiceHandler2" + id="myHandler2"> + </serviceHandler> +</extension> </pre> - </documentation> </annotation> |