Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java
index 1e41aba0c..28f52e69a 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigurationWizardElement.java
@@ -32,7 +32,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
private String name;
private ImageDescriptor imageDescriptor;
private IConfigurationElement configurationElement;
-
+
/**
* Creates a new instance of this class
*
@@ -46,18 +46,18 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
* element. That is, create the instance of the class the isv supplied in
* the extension point.
* @return the instance of the configuration wizard of type {@link IConfigurationWizard}
- *
+ *
* @throws CoreException if an error occurs creating the extension
*/
public Object createExecutableExtension() throws CoreException {
return TeamUIPlugin.createExtension(configurationElement, ConfigureProjectWizard.ATT_CLASS);
}
-
+
/**
* Creates the instance of the wizard and initializes with the given input.
* @param projects the projects being shared by this wizard
* @return the wizard instance of type {@link IConfigurationWizard}
- * @throws CoreException if an error occurs creating the extension
+ * @throws CoreException if an error occurs creating the extension
*/
public IWizard createExecutableExtension(IProject[] projects) throws CoreException {
IWorkbench workbench = PlatformUI.getWorkbench();
@@ -82,7 +82,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
return wizard;
}
-
+
/*
* Method declared on IAdaptable.
*/
@@ -95,7 +95,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Returns the configuration element
- *
+ *
* @return the configuration element
*/
public IConfigurationElement getConfigurationElement() {
@@ -103,7 +103,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Returns the image for the given element
- *
+ *
* @param element the element to get the image for
* @return the image for the given element
*/
@@ -113,7 +113,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Returns the label for the given element
- *
+ *
* @param element the element to get the label for
* @return the label for the given element
*/
@@ -131,7 +131,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Returns the image for this element.
- *
+ *
* @return the image for this element
*/
public ImageDescriptor getImageDescriptor() {
@@ -139,7 +139,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Set the configuration element
- *
+ *
* @param newConfigurationElement the new configuration element
*/
public void setConfigurationElement(IConfigurationElement newConfigurationElement) {
@@ -155,7 +155,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Sets the id parameter of this element
- *
+ *
* @param value the new ID
*/
public void setID(String value) {
@@ -163,13 +163,13 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
}
/**
* Sets the image for this element.
- *
+ *
* @param value the new image
*/
public void setImageDescriptor(ImageDescriptor value) {
imageDescriptor = value;
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IPluginContribution#getLocalId()
*/
@@ -177,7 +177,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
public String getLocalId() {
return configurationElement.getAttribute(ConfigureProjectWizard.ATT_ID);
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IPluginContribution#getPluginId()
*/
@@ -185,7 +185,7 @@ public class ConfigurationWizardElement extends WorkbenchAdapter implements IAda
public String getPluginId() {
return configurationElement.getNamespaceIdentifier();
}
-
+
/**
* Return whether the wizard created for this element has pages.
* Unfortunately, the only way to find this out is to create the wizard.

Back to the top