diff options
author | Ivan Furnadjiev | 2013-06-04 10:46:43 +0000 |
---|---|---|
committer | Ivan Furnadjiev | 2013-06-04 10:46:43 +0000 |
commit | f549088fc40fc43df101ac800323b213f8dd0b75 (patch) | |
tree | 7bb1c47122ed6cbfcc85f0a95e7f608da7a1da9c /bundles/org.eclipse.rap.ui/schema/rap/serviceHandler.exsd | |
parent | 2be3e656d893db24e70ed3c12040c0fc5668b546 (diff) | |
download | org.eclipse.rap-f549088fc40fc43df101ac800323b213f8dd0b75.tar.gz org.eclipse.rap-f549088fc40fc43df101ac800323b213f8dd0b75.tar.xz org.eclipse.rap-f549088fc40fc43df101ac800323b213f8dd0b75.zip |
Update the documentation inside exsd files
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> |