Skip to main content
Jump to: navigation, search

Extending the generator by providing additional sources of data

Revision as of 04:59, 16 August 2007 by S.bejakovic.gmail.com (Talk | contribs)

(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 extend this extension point, a user needs to create a class which implements the IBatchDataSource interface, and a factory class for this data source (a class that implements the IBatchDataSourceFactory), which needs to be referenced in the plugin.xml file of the plugin that will be providing the extension.

Back to the top