Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2012-08-11 22:15:18 +0000
committerStephan Herrmann2012-08-11 22:15:18 +0000
commitdeda7932d41a672c6db5ac7bb7c84b0d06ad87fb (patch)
treecdd99a84e87f07f6b54603541bb397fd8e2792bd /org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
parentbbd06a961329133604a68cfd41d482a8c7aafd26 (diff)
downloadorg.eclipse.objectteams-deda7932d41a672c6db5ac7bb7c84b0d06ad87fb.tar.gz
org.eclipse.objectteams-deda7932d41a672c6db5ac7bb7c84b0d06ad87fb.tar.xz
org.eclipse.objectteams-deda7932d41a672c6db5ac7bb7c84b0d06ad87fb.zip
Bug 386587 - [refactoring] pull-up refactoring cannot handle callout
bindings - support creation of new callout bindings - support removal of callout declarations
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
index 2c602dbff..1548d203c 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
@@ -66,7 +66,11 @@ import java.util.List;
* @since 2.0
* @noinstantiate This class is not intended to be instantiated by clients.
*/
-public class MethodDeclaration extends BodyDeclaration {
+public class MethodDeclaration extends BodyDeclaration
+//{ObjectTeams: allow generalization with MethodSpec:
+ implements IMethodNode
+// SH}
+{
/**
* The "javadoc" structural property of this node type (child type: {@link Javadoc}).

Back to the top