Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/testInterface3/out/I.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/testInterface3/out/I.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/testInterface3/out/I.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/testInterface3/out/I.java
new file mode 100644
index 000000000..5265bf76f
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/testInterface3/out/I.java
@@ -0,0 +1,32 @@
+package p;
+
+/** typecomment template*/
+interface I {
+
+ /** method m javadoc comment */
+ public abstract void m();
+
+ /** field I javadoc comment */
+ int I= 9;
+
+ /* method m1 regular comment */
+ public abstract void m1();
+
+ /* field i1 regular comment */
+ int I1= 9;
+
+ // method m2 line comment
+ public abstract void m2();
+
+ // field i2 line comment
+ int I2= 9;
+
+ public abstract void m4(); /* method m4 regular comment */
+
+ int I4= 9; /* field i4 regular comment */
+
+ public abstract void m5(); // method m5 line comment
+
+ int I5= 9; // field i5 line comment
+
+} \ No newline at end of file

Back to the top