Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/A.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/A.java
new file mode 100644
index 000000000..fa601c8b1
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/A.java
@@ -0,0 +1,16 @@
+package p;
+
+class A implements I {
+ /* (non-Javadoc)
+ * @see p.I#m()
+ */
+ public void m() {}
+ public void m1() {}
+ void g() {
+ f((A)this);
+ }
+ A f(A a){
+ f(a).m1();
+ return a;
+ }
+} \ No newline at end of file

Back to the top