I am trying to importing the project to eclipse through programmatically. I dont want to use UI mode.
Below is the code I used for importing the project:
<
Use org.eclipse.ui.wizards.datatransfer.ImportOperation
Try something like this:
IOverwriteQuery overwriteQuery = new IOverwriteQuery() {
public String queryOverwrite(String file) { return ALL; }
};
String baseDir = // location of files to import
ImportOperation importOperation = new ImportOperation(project.getFullPath(),
new File(baseDir), FileSystemStructureProvider.INSTANCE, overwriteQuery);
importOperation.setCreateContainerStructure(false);
importOperation.run(new NullProgressMonitor());