diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/dialog/SARLRuntimeEnvironmentTab.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/dialog/SARLRuntimeEnvironmentTab.java index 746947460b..fa32add4e1 100644 --- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/dialog/SARLRuntimeEnvironmentTab.java +++ b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/dialog/SARLRuntimeEnvironmentTab.java @@ -52,7 +52,7 @@ import io.sarl.eclipse.SARLEclipsePlugin; import io.sarl.eclipse.launching.config.ILaunchConfigurationAccessor; import io.sarl.eclipse.launching.config.ILaunchConfigurationConfigurator; -import io.sarl.eclipse.launching.sreproviding.StandardProjectSREProviderFactory; +import io.sarl.eclipse.launching.sreproviding.EclipseIDEProjectSREProviderFactory; import io.sarl.eclipse.runtime.ISREInstall; import io.sarl.eclipse.runtime.ProjectProvider; import io.sarl.eclipse.runtime.ProjectSREProviderFactory; @@ -126,7 +126,7 @@ public void createControl(Composite parent) { final ProjectProvider projectProvider = new ProjectAdapter(); final List sreProviderFactories = getProviderFromExtension(); - sreProviderFactories.add(new StandardProjectSREProviderFactory()); + sreProviderFactories.add(new EclipseIDEProjectSREProviderFactory()); this.sreBlock = new SREConfigurationBlock(true, projectProvider, sreProviderFactories); this.sreBlock.createControl(parent); diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/runner/SARLLaunchConfigurationDelegate.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/runner/SARLLaunchConfigurationDelegate.java index 0d4f9152c8..0de9a80bf6 100644 --- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/runner/SARLLaunchConfigurationDelegate.java +++ b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/runner/SARLLaunchConfigurationDelegate.java @@ -65,7 +65,7 @@ import io.sarl.eclipse.buildpath.SARLClasspathContainerInitializer; import io.sarl.eclipse.launching.config.ILaunchConfigurationAccessor; import io.sarl.eclipse.launching.config.RootContextIdentifierType; -import io.sarl.eclipse.launching.sreproviding.StandardProjectSREProvider; +import io.sarl.eclipse.launching.sreproviding.EclipseIDEProjectSREProvider; import io.sarl.eclipse.runtime.ISREInstall; import io.sarl.eclipse.runtime.ProjectSREProvider; import io.sarl.eclipse.runtime.ProjectSREProviderFactory; @@ -440,7 +440,7 @@ private ISREInstall getProjectSpecificSRE(ILaunchConfiguration configuration, bo } // Get the SRE from the default project configuration - final ProjectSREProvider provider = new StandardProjectSREProvider(prj); + final ProjectSREProvider provider = new EclipseIDEProjectSREProvider(prj); sre = provider.getProjectSREInstall(); if (sre != null) { if (verify) { diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProvider.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProvider.java similarity index 93% rename from main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProvider.java rename to main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProvider.java index af5d494b05..9e0975d184 100644 --- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProvider.java +++ b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProvider.java @@ -34,15 +34,16 @@ import io.sarl.eclipse.runtime.SARLRuntime; /** Default implementation of a project SRE provider. - * This provider is reading the properties associated to the project and + * This provider is reading the Eclipse IDE properties associated to the project and * determine the corresponding SRE. * * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ + * @see EclipseIDEProjectSREProviderFactory */ -public class StandardProjectSREProvider implements ProjectSREProvider { +public class EclipseIDEProjectSREProvider implements ProjectSREProvider { private final boolean projectSpecificConfiguration; @@ -53,7 +54,7 @@ public class StandardProjectSREProvider implements ProjectSREProvider { /** Constructor. * @param project the project. */ - public StandardProjectSREProvider(IProject project) { + public EclipseIDEProjectSREProvider(IProject project) { boolean tmpSpecific = false; boolean tmpUseSystem = false; String tmpSRE = null; diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProviderFactory.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProviderFactory.java similarity index 80% rename from main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProviderFactory.java rename to main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProviderFactory.java index efdce78a27..97a9262dc5 100644 --- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/StandardProjectSREProviderFactory.java +++ b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/launching/sreproviding/EclipseIDEProjectSREProviderFactory.java @@ -27,26 +27,26 @@ import io.sarl.eclipse.runtime.ProjectSREProviderFactory; /** Factory of the default implementation of a project SRE provider. - * This provider is reading the properties associated to the project and + * This provider is reading the Eclipse IDE properties associated to the project and * determine the corresponding SRE. * * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ - * @see StandardProjectSREProviderFactory + * @see EclipseIDEProjectSREProvider */ -public class StandardProjectSREProviderFactory implements ProjectSREProviderFactory { +public class EclipseIDEProjectSREProviderFactory implements ProjectSREProviderFactory { /** Construct a factory of SRE provider. */ - public StandardProjectSREProviderFactory() { + public EclipseIDEProjectSREProviderFactory() { // } @Override public ProjectSREProvider getProjectSREProvider(IProject project) { - return new StandardProjectSREProvider(project); + return new EclipseIDEProjectSREProvider(project); } }