Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EIG:Example Provider"

(A sample JGroups client container)
(Example Container Instantiation)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Example provider==
+
==Example Provider==
 
Here is where you describe what the provider can do, what problem it solves and how it does that. It needs enough information to aid the reader of the manual in the decision of this provider can be useful for him.
 
Here is where you describe what the provider can do, what problem it solves and how it does that. It needs enough information to aid the reader of the manual in the decision of this provider can be useful for him.
 
Protocol JGroups is documented at the [http://jgroups.org| JGroups site].
 
  
 
=== Example Bundles ===
 
=== Example Bundles ===
Line 38: Line 36:
 
</source>
 
</source>
  
Some description yadi yadi
+
use screenshots in the EIG namespace
  
The way to initialize a container is therefore:
 
  
<source lang="java">
+
[[image:EIG_example.png]]
IContainer containerManager = factory.createContainer( "ecf.example.manager", "example:///xmp" );
+
</source>
+
  
 
===Example Use===
 
===Example Use===

Latest revision as of 15:11, 6 March 2011

Example Provider

Here is where you describe what the provider can do, what problem it solves and how it does that. It needs enough information to aid the reader of the manual in the decision of this provider can be useful for him.

Example Bundles

The Example provider needs the following bundles. You can type some text about the start levels or something else.

Bundle Description Start Level
org.eclipse.ecf.provider.example This is an example default
org.eclipse.ecf.provider.example.ui Provides the ui
org.eclipse.ecf.provider.zookeeper Zookeeper needs to be included for this and that 3


Example Container Instantiation

Example container ID : ecf.example.manager

Sample code:

IContainerFactory factory = getContainerManager().getContainerFactory();
IContainer containerManager = factory.createContainer( "ecf.example.manager", "example:///why/curt?why!" );

use screenshots in the EIG namespace


EIG example.png

Example Use

Describe how to use the provider in a normal program. Explain it very well. After all, this is a manual.

Additional topics needed

your text here

Back to the top