Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test19/out/Test.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test19/out/Test.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test19/out/Test.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test19/out/Test.java
new file mode 100644
index 000000000..cd73f156a
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test19/out/Test.java
@@ -0,0 +1,17 @@
+//7, 36 -> 7, 36 replaceAll == true, removeDeclaration == false
+package p;
+
+@Test.Annot("John")
+class Test {
+ @interface Annot {
+ public static final String DEFAULT= "John";
+ String value();
+ }
+ @Annot("John")
+ int a;
+ @Annot(value="John")
+ int b;
+}
+
+@Test.Annot(value="John")
+enum Test2 {} \ No newline at end of file

Back to the top