if(objClass.getName().equals(className))
{
logger.debug("found a matching class");
IDataCreationWizard wizard = (IDataCreationWizard)cel.createExecutableExtension("class");
logger.debug("wizard: " + wizard);
logger.debug("set object and params for wizard: " + obj);
wizard.setCampaign(campaign);
wizard.setObject(obj);
wizard.setParams(params);
logger.debug("tell wizard to setup");
wizard.setup();
logger.debug("tell wizard to run");
wizard.run();
if(wizard.isCanceled())
{
logger.debug("wizard canceled");
return null;
}