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:
authorkchan2005-11-04 22:18:40 +0000
committerkchan2005-11-04 22:18:40 +0000
commit0926e4666f0be4e04ac79c8fcd1872b6e861121c (patch)
treebb601948db4c017659fa323e58936464ae2e5601 /bundles/org.eclipse.jst.ws.axis.consumption.ui
parentc0fed10da576200713408bd4b24aa0ef544d1969 (diff)
downloadwebtools.webservices-0926e4666f0be4e04ac79c8fcd1872b6e861121c.tar.gz
webtools.webservices-0926e4666f0be4e04ac79c8fcd1872b6e861121c.tar.xz
webtools.webservices-0926e4666f0be4e04ac79c8fcd1872b6e861121c.zip
[114986] Remove modules and j2eeLevels from WebService and IWebServiceClient.
Diffstat (limited to 'bundles/org.eclipse.jst.ws.axis.consumption.ui')
-rw-r--r--bundles/org.eclipse.jst.ws.axis.consumption.ui/src/org/eclipse/jst/ws/internal/axis/consumption/ui/wsrt/AxisWebServiceClient.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.jst.ws.axis.consumption.ui/src/org/eclipse/jst/ws/internal/axis/consumption/ui/wsrt/AxisWebServiceClient.java b/bundles/org.eclipse.jst.ws.axis.consumption.ui/src/org/eclipse/jst/ws/internal/axis/consumption/ui/wsrt/AxisWebServiceClient.java
index 836961ed9..1970bcd74 100644
--- a/bundles/org.eclipse.jst.ws.axis.consumption.ui/src/org/eclipse/jst/ws/internal/axis/consumption/ui/wsrt/AxisWebServiceClient.java
+++ b/bundles/org.eclipse.jst.ws.axis.consumption.ui/src/org/eclipse/jst/ws/internal/axis/consumption/ui/wsrt/AxisWebServiceClient.java
@@ -44,19 +44,19 @@ public class AxisWebServiceClient extends AbstractWebServiceClient
}
public ICommandFactory assemble(IEnvironment env, IContext ctx,
- ISelection sel, String project, String module, String earProject, String ear)
+ ISelection sel, String project, String earProject)
{
return null;
}
public ICommandFactory deploy(IEnvironment env, IContext ctx, ISelection sel,
- String project, String module, String earProject, String ear)
+ String project, String earProject)
{
return null;
}
public ICommandFactory develop(IEnvironment env, IContext ctx, ISelection sel,
- String project, String module, String earProject, String ear)
+ String project, String earProject)
{
EclipseEnvironment environment = (EclipseEnvironment)env;
registerDataMappings( environment.getCommandManager().getMappingRegistry());
@@ -79,13 +79,13 @@ public class AxisWebServiceClient extends AbstractWebServiceClient
}
public ICommandFactory install(IEnvironment env, IContext ctx, ISelection sel,
- String project, String module, String earProject, String ear)
+ String project, String earProject)
{
return null;
}
public ICommandFactory run(IEnvironment env, IContext ctx, ISelection sel,
- String project, String module, String earProject, String ear)
+ String project, String earProject)
{
return null;
}

Back to the top