Interface IEASyProjectConfigurator
public interface IEASyProjectConfigurator
Configurator for configuring newly created EASy projects.
These Configurators should set
IProject settings of Eclipse, like
- Natures
- Classpath Entries
- Author:
- El-Sharkawy
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigure(org.eclipse.core.resources.IProject project) Configures the givenIProject.voidconfigure(org.eclipse.core.resources.IProject project, org.eclipse.core.resources.IProject parentProject) Configures the givenIProject, while deriving a new product line member project.
-
Method Details
-
configure
void configure(org.eclipse.core.resources.IProject project) Configures the givenIProject.- Parameters:
project- The project to configure. Should be a new created project, must not benull.
-
configure
void configure(org.eclipse.core.resources.IProject project, org.eclipse.core.resources.IProject parentProject) Configures the givenIProject, while deriving a new product line member project.- Parameters:
project- The project to configure. Should be a new created project, must not benull.parentProject- The project from whichprojectwas derived. This should be used as a template.
-