VCS: create files when adding module or converting to directory format through VFS -> this will allow VCS to add files under control automatically

This commit is contained in:
irengrig
2011-11-02 16:54:08 +04:00
parent 7da6e6862d
commit f6e9633353
6 changed files with 38 additions and 11 deletions
@@ -16,6 +16,7 @@
package com.intellij.ide.util.projectWizard;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.util.Pair;
import org.jetbrains.annotations.Nullable;
@@ -31,7 +32,7 @@ public interface SourcePathsBuilder {
void setContentEntryPath(String moduleRootPath);
List<Pair<String,String>> getSourcePaths();
List<Pair<String,String>> getSourcePaths() throws ConfigurationException;
void setSourcePaths(List<Pair<String,String>> sourcePaths);