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

Extending the generator by providing additional sources of data

Revision as of 04:54, 16 August 2007 by Unnamed Poltroon (Talk) (New page: There is an easy mechanism for extending the test message generator so that it can get data from other sources: the <code>org.eclipse.soc.ohftest</code> plugin defines an extension point c...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

There is an easy mechanism for extending the test message generator so that it can get data from other sources: the org.eclipse.soc.ohftest plugin defines an extension point called batchDataSources. In order to use this extension point, a user needs to create a class which implements org.eclipse.soc.ohftest.batchgenerator.datasource.IBatchDataSource, and a factory class for this data source (a class that implements org.eclipse.soc.ohftest.batchgenerator.datasource.IBatchDataSourceFactory, which needs to be referenced in the plugin.xml file of the plugin that will be providing the extension.

Back to the top