diff options
| author | pnehrer | 2005-02-17 05:18:03 +0000 |
|---|---|---|
| committer | pnehrer | 2005-02-17 05:18:03 +0000 |
| commit | bdfb85e43f0cbfe091cb72cbf5cd6c63e121b91b (patch) | |
| tree | 05218dc7c8240ab2b5d9bb4ac74e61f50032d12c | |
| parent | 415ea0dc8b0962e4ada8d8d47fc29e016338bc11 (diff) | |
| download | org.eclipse.ecf-bdfb85e43f0cbfe091cb72cbf5cd6c63e121b91b.tar.gz org.eclipse.ecf-bdfb85e43f0cbfe091cb72cbf5cd6c63e121b91b.tar.xz org.eclipse.ecf-bdfb85e43f0cbfe091cb72cbf5cd6c63e121b91b.zip | |
Added basic documentation.
| -rw-r--r-- | examples/bundles/org.eclipse.ecf.sdo/schema/manager.exsd | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/examples/bundles/org.eclipse.ecf.sdo/schema/manager.exsd b/examples/bundles/org.eclipse.ecf.sdo/schema/manager.exsd index 54ce9bda0..8e11c00da 100644 --- a/examples/bundles/org.eclipse.ecf.sdo/schema/manager.exsd +++ b/examples/bundles/org.eclipse.ecf.sdo/schema/manager.exsd @@ -6,7 +6,7 @@ <meta.schema plugin="org.eclipse.ecf.sdo" id="manager" name="Data Graph Sharing Manager"/> </appInfo> <documentation> - Allows plugins to provide custom implementations of the Data Graph Sharing facility by registering uniquely named Data Graph Sharing Managers (classes that implement org.eclipse.ecf.sdo.IDataGraphSharingManager), which are responsible for producing per-container instances of Data Graph Sharing (org.eclipse.ecf.sdo.IDataGraphSharing). + Allows plugins to provide custom implementations of the Data Graph Sharing facility by registering uniquely named Data Graph Sharing Managers (classes that implement <code>org.eclipse.ecf.sdo.IDataGraphSharingManager</code>), which are responsible for producing per-container instances of the Data Graph Sharing service implementation (<code>org.eclipse.ecf.sdo.IDataGraphSharing</code>). </documentation> </annotation> @@ -52,14 +52,14 @@ <attribute name="name" type="string" use="required"> <annotation> <documentation> - + Unique name that identifies this manager within the system. </documentation> </annotation> </attribute> <attribute name="class" type="string" use="required"> <annotation> <documentation> - + The fully qualified name of the class that implements this manager. The class must implement <code>org.eclipse.ecf.sdo.IDataGraphSharingManager</code>. </documentation> <appInfo> <meta.attribute kind="java" basedOn="org.eclipse.ecf.sdo.IDataGraphSharingManager"/> @@ -74,7 +74,7 @@ <meta.section type="since"/> </appInfo> <documentation> - [Enter the first release in which this extension point appears.] + 1.0.0 </documentation> </annotation> @@ -83,7 +83,16 @@ <meta.section type="examples"/> </appInfo> <documentation> - [Enter extension point usage example here.] + This plugin defines a default Data Graph Sharing Manager: +<pre> + <extension + point="org.eclipse.ecf.sdo.manager"> + <manager + class="org.eclipse.ecf.internal.sdo.DataGraphSharingManager" + name="default"> + </manager> + </extension> +</pre> </documentation> </annotation> @@ -92,7 +101,7 @@ <meta.section type="apiInfo"/> </appInfo> <documentation> - [Enter API information here.] + To use a registered manager, use the static methods provided by <code>org.eclipse.ecf.sdo.DataGraphSharingFactory</code>. </documentation> </annotation> @@ -101,7 +110,7 @@ <meta.section type="implementation"/> </appInfo> <documentation> - [Enter information about supplied implementation of this extension point.] + A default implementation (named <code>default</code>) is provided by this plugin. </documentation> </annotation> @@ -110,7 +119,8 @@ <meta.section type="copyright"/> </appInfo> <documentation> - + Copyright (c) 2005 Peter Nehrer and Composent, Inc. +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 http://www.eclipse.org/legal/epl-v10.html. Contributors: Peter Nehrer - initial API and implementation </documentation> </annotation> |
