Interface IProjectCreationResult
-
- All Known Subinterfaces:
IEclipseProjectCreationResult
- All Known Implementing Classes:
EclipseProjectCreationResult,ProjectCreationResult
public interface IProjectCreationResultAn instance of this class will be returned after callingIPersistencer.createProject(String, File, String, boolean).- Author:
- El-Sharkawy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScriptgetBuildScript()Returns the main build script for instantiating the whole project.java.io.FilegetConfigFolder()Returns the location of configuration files for the newly created project.java.io.FilegetProjectFolder()Returns the top level location of the newly created project.java.lang.StringgetProjectID()Returns the projectID of the newly created project.ProjectgetVarModel()Returns the variability model of the newly created project.java.io.FilegetVarModelProjectPath()Returns the absolute path of the newly created VarModel project (ivml project).
-
-
-
Method Detail
-
getProjectFolder
java.io.File getProjectFolder()
Returns the top level location of the newly created project.- Returns:
- The top level location of the newly created project.
-
getConfigFolder
java.io.File getConfigFolder()
Returns the location of configuration files for the newly created project.- Returns:
- The location of configuration files for the newly created project.
-
getProjectID
java.lang.String getProjectID()
Returns the projectID of the newly created project.- Returns:
- The projectID of the newly created project.
-
getVarModelProjectPath
java.io.File getVarModelProjectPath()
Returns the absolute path of the newly created VarModel project (ivml project).- Returns:
- The absolute path of the newly created VarModel project.
-
getVarModel
Project getVarModel()
Returns the variability model of the newly created project.- Returns:
- The variability model of the newly created project.
-
getBuildScript
Script getBuildScript()
Returns the main build script for instantiating the whole project.- Returns:
- The starting point of the complete instantiation of the current project.
-
-