Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbrealey2004-12-02 16:32:00 +0000
committercbrealey2004-12-02 16:32:00 +0000
commit06fc2bec33c43d2df1d0d43a7aed49dfdc6e56af (patch)
tree0f818583e5dd92b5eed44b3cd45d68eac2fee052 /bundles/org.eclipse.wst.command.env.ui
parentfeb7e45e8fd2a5ef838de2b09e9c31ca83dc0a29 (diff)
downloadwebtools.webservices-06fc2bec33c43d2df1d0d43a7aed49dfdc6e56af.tar.gz
webtools.webservices-06fc2bec33c43d2df1d0d43a7aed49dfdc6e56af.tar.xz
webtools.webservices-06fc2bec33c43d2df1d0d43a7aed49dfdc6e56af.zip
[79939] Committing initial version of Web service wizardry, with some adjustments to prereqs
Diffstat (limited to 'bundles/org.eclipse.wst.command.env.ui')
-rw-r--r--bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/env/ui/widgets/DynamicWizard.java12
-rw-r--r--bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/widgets/popup/DynamicPopupWizard.java8
2 files changed, 10 insertions, 10 deletions
diff --git a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/env/ui/widgets/DynamicWizard.java b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/env/ui/widgets/DynamicWizard.java
index f34f09c7f..4cade6dd0 100644
--- a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/env/ui/widgets/DynamicWizard.java
+++ b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/env/ui/widgets/DynamicWizard.java
@@ -74,7 +74,7 @@ import org.eclipse.wst.command.internal.env.ui.widgets.WizardPageManager;
* </extension>
*
* </pre>
- * Here is the DynamicWizard entry for this particular wizard. This id attributes
+ * Here is the dynamicWizard entry for this particular wizard. This id attributes
* link these two entries together. The class attribute must specify a class that
* implements the org.eclipse.wst.command.env.ui.widgets.CommandWidgetBinding interface. This
* interface specifies what the UI should look like and the commands the should
@@ -82,13 +82,13 @@ import org.eclipse.wst.command.internal.env.ui.widgets.WizardPageManager;
*
* <pre>
* &lt;extension
- * point="org.eclipse.wst.command.env.ui.DynamicWizard"&gt;
- * &lt;DynamicWizard
+ * point="org.eclipse.wst.command.env.dynamicWizard"&gt;
+ * &lt;dynamicWizard
* iconbanner="icons/full/wizban/webservicesclient_wiz.gif"
* class="org.eclipse.jst.ws.consumption.ui.widgets.binding.ClientWidgetBinding"
* title="%WIZARD_TITLE_WSC"
* id="org.eclipse.jst.ws.consumption.ui.wizard.client.clientwizard"&gt;
- * &lt;/DynamicWizard&gt;
+ * &lt;/dynamicWizard&gt;
* &lt;/extension&gt;
* </pre>
*
@@ -113,7 +113,7 @@ public class DynamicWizard extends Wizard implements INewWizard, IExecutableExte
/**
* This method is called when the Dynamic wizard is created by eclipse.
- * We need to find a DynamicWizard extension point that matches the id
+ * We need to find a dynamicWizard extension point that matches the id
* for this wizard. Once the extension point is found it will contain
* a reference to a CommandWidgetBinding class which defines the widgets
* and commands for this wizard.
@@ -171,7 +171,7 @@ public class DynamicWizard extends Wizard implements INewWizard, IExecutableExte
{
IConfigurationElement[] elements = extensions[index].getConfigurationElements();
- if( elements.length == 1 && elements[0].getName().equals( "DynamicWizard") )
+ if( elements.length == 1 && elements[0].getName().equals( "dynamicWizard") )
{
String id = elements[0].getAttribute( "id" );
diff --git a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/widgets/popup/DynamicPopupWizard.java b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/widgets/popup/DynamicPopupWizard.java
index 50f959018..650737ec6 100644
--- a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/widgets/popup/DynamicPopupWizard.java
+++ b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/widgets/popup/DynamicPopupWizard.java
@@ -43,7 +43,7 @@ import org.eclipse.wst.command.internal.env.ui.widgets.WizardPageFactory;
* This class is used to popup dynamic wizards. The popupMenus extension is used
* the contribute a popup to Eclipse. The class in the action element should reference
* this DynamicPopupWizard class. This id attribute in the action element should contain
- * an id that references a DynamicWizard extension point. This is how the DynamicPopupWizard
+ * an id that references a dynamicWizard extension point. This is how the DynamicPopupWizard
* class knows which wizard to display.
*
* Note: the id attribute in the objectContribution element refers to an
@@ -70,13 +70,13 @@ import org.eclipse.wst.command.internal.env.ui.widgets.WizardPageFactory;
* &lt;/extension&gt;
*
* &lt;extension
- * point="org.eclipse.wst.command.env.ui.DynamicWizard"&gt;
- * &lt;DynamicWizard
+ * point="org.eclipse.wst.command.env.dynamicWizard"&gt;
+ * &lt;dynamicWizard
* iconbanner="icons/full/wizban/webservicesclient_wiz.gif"
* class="org.eclipse.jst.ws.consumption.ui.widgets.binding.ClientWidgetBinding"
* title="%WIZARD_TITLE_WSC"
* id="org.eclipse.jst.ws.consumption.ui.wizard.client.clientwizard"&gt;
- * &lt;/DynamicWizard&gt;
+ * &lt;/dynamicWizard&gt;
* &lt;/extension&gt;
*</pre>
*

Back to the top