*/
public IFile addTemplateToProject(String destinationContainer,
String templateContent, IProgressMonitor monitor, int noOfTicks)
throws CoreException {
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IResource resource = root.findMember(new Path(destinationContainer));
if (!resource.exists() || !(resource instanceof IContainer)) {
throw ExceptionHandler.getNewCoreException(destinationContainer + " does not exist!", null);
}
IContainer container = (IContainer) resource;
String templateFileName= templateConfig.getName().replace(" ", "") + ".java";