String bsn = templateConfig.getContributor().getName();
Bundle bundle = BundleUtils.findBundle(Plugin.getDefault().getBundleContext(), bsn, null);
String paths = templateConfig.getAttribute("paths");
if (paths == null)
throw new CoreException(new Status(IStatus.ERROR, Plugin.PLUGIN_ID, 0, "Template is missing 'paths' property.", null));
StringTokenizer tokenizer = new StringTokenizer(paths, ",");
progress.setWorkRemaining(tokenizer.countTokens());
while (tokenizer.hasMoreTokens()) {