Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 provider)
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 ===

Revision as of 14:39, 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!" );

Some description yadi yadi

The way to initialize a container is therefore:

IContainer containerManager = factory.createContainer( "ecf.example.manager", "example:///xmp" );

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