[462575] StubUtility2 API change
diff --git a/bundles/org.eclipse.jst.ws.jaxws.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.jst.ws.jaxws.ui/META-INF/MANIFEST.MF
index 2da5fc6..57bef74 100755
--- a/bundles/org.eclipse.jst.ws.jaxws.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.jst.ws.jaxws.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jst.ws.jaxws.ui;singleton:=true
-Bundle-Version: 1.0.400.qualifier
+Bundle-Version: 1.0.401.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.eclipse.jst.ws.internal.jaxws.ui.JAXWSUIPlugin
Bundle-Vendor: %pluginProvider
diff --git a/bundles/org.eclipse.jst.ws.jaxws.ui/pom.xml b/bundles/org.eclipse.jst.ws.jaxws.ui/pom.xml
index 5f43005..6c0a5f7 100644
--- a/bundles/org.eclipse.jst.ws.jaxws.ui/pom.xml
+++ b/bundles/org.eclipse.jst.ws.jaxws.ui/pom.xml
@@ -22,7 +22,7 @@
<groupId>org.eclipse.webtools.webservices</groupId>
<artifactId>org.eclipse.jst.ws.jaxws.ui</artifactId>
- <version>1.0.400-SNAPSHOT</version>
+ <version>1.0.401-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
diff --git a/bundles/org.eclipse.jst.ws.jaxws.ui/src/org/eclipse/jst/ws/internal/jaxws/ui/annotations/correction/AddUnimplementedMethodCorrectionProposal.java b/bundles/org.eclipse.jst.ws.jaxws.ui/src/org/eclipse/jst/ws/internal/jaxws/ui/annotations/correction/AddUnimplementedMethodCorrectionProposal.java
index 761391d..1c23813 100644
--- a/bundles/org.eclipse.jst.ws.jaxws.ui/src/org/eclipse/jst/ws/internal/jaxws/ui/annotations/correction/AddUnimplementedMethodCorrectionProposal.java
+++ b/bundles/org.eclipse.jst.ws.jaxws.ui/src/org/eclipse/jst/ws/internal/jaxws/ui/annotations/correction/AddUnimplementedMethodCorrectionProposal.java
@@ -77,7 +77,7 @@
IMethodBinding methodBinding = unimplementedMethods[i];
MethodDeclaration methodDeclaration = StubUtility2.createImplementationStub(compilationUnit, rewriter,
importRewrite, importRewrite.getDefaultImportRewriteContext(), methodBinding,
- methodBinding.getDeclaringClass().getName(), settings, false);
+ methodBinding.getDeclaringClass(), settings, false);
listRewrite.insertLast(methodDeclaration, null);
}
textChange.addEdit(rewriter.rewriteAST());