public class ExampleWizardSupport extends Object
| Constructor and Description |
|---|
ExampleWizardSupport() |
| Modifier and Type | Method and Description |
|---|---|
static org.eclipse.core.resources.IProject |
createProject(String projectName,
URI location,
String archivePath)
For this marvelous project we need to: - create the default Eclipse
project - add the custom project nature - create the folder structure
|
static void |
modifyLaunchConfigurationAttributeValues(List<String> attributesKeys,
String stringToReplace,
String stringThatReplaces,
org.eclipse.debug.core.ILaunchConfiguration readOnlyLaunchConfiguration,
org.eclipse.debug.core.ILaunchConfigurationWorkingCopy writableLaunchConfiguration)
The method changes the values of the launch configuration attributes.
|
public static org.eclipse.core.resources.IProject createProject(String projectName, URI location, String archivePath)
projectName - location - org.eclipse.core.runtime.CoreExceptionpublic static void modifyLaunchConfigurationAttributeValues(List<String> attributesKeys, String stringToReplace, String stringThatReplaces, org.eclipse.debug.core.ILaunchConfiguration readOnlyLaunchConfiguration, org.eclipse.debug.core.ILaunchConfigurationWorkingCopy writableLaunchConfiguration) throws org.eclipse.core.runtime.CoreException
attributeKeys it replaces stringToReplace by stringThatReplaces.attributesKeys - keys of attributes to modify.stringToReplace - string that will be replaced in the values of attributes referred by attributesKeys.stringThatReplaces - string that replaces the stringToReplace.readOnlyLaunchConfiguration - launchConfiguration that will be modified.writableLaunchConfiguration - writable version of the readOnlyLaunchConfiguration.org.eclipse.core.runtime.CoreException - The exception thrown in case of problems with handling the launch configuration.