summaryrefslogtreecommitdiff
path: root/android/testData/dom
diff options
context:
space:
mode:
authorEugene Kudelevsky <Eugene.Kudelevsky@jetbrains.com>2013-08-29 20:18:51 +0400
committerEugene Kudelevsky <Eugene.Kudelevsky@jetbrains.com>2013-08-29 20:18:51 +0400
commit2065d1b088075e79e4922273cc5ed6e0cd0414b1 (patch)
treed2cb2b80d56f408f2963c061d2e5b91b6f93cd15 /android/testData/dom
parent572aa60c7ef695c4720a89e5eba45c554ed5a513 (diff)
downloadidea-2065d1b088075e79e4922273cc5ed6e0cd0414b1.tar.gz
IDEA-112692 completion of "@+id/..." values
Diffstat (limited to 'android/testData/dom')
-rw-r--r--android/testData/dom/layout/newIdCompl1.xml4
-rw-r--r--android/testData/dom/layout/newIdCompl1_after.xml4
-rw-r--r--android/testData/dom/layout/newIdCompl2.xml4
-rw-r--r--android/testData/dom/layout/newIdCompl2_after.xml4
4 files changed, 16 insertions, 0 deletions
diff --git a/android/testData/dom/layout/newIdCompl1.xml b/android/testData/dom/layout/newIdCompl1.xml
new file mode 100644
index 00000000000..36460bcd621
--- /dev/null
+++ b/android/testData/dom/layout/newIdCompl1.xml
@@ -0,0 +1,4 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
+ <Button android:id="@id/my_id_1"/>
+ <Button android:id="@+id/my_i<caret>"/>
+</LinearLayout> \ No newline at end of file
diff --git a/android/testData/dom/layout/newIdCompl1_after.xml b/android/testData/dom/layout/newIdCompl1_after.xml
new file mode 100644
index 00000000000..8f08958ac17
--- /dev/null
+++ b/android/testData/dom/layout/newIdCompl1_after.xml
@@ -0,0 +1,4 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
+ <Button android:id="@id/my_id_1"/>
+ <Button android:id="@+id/my_id_1"/>
+</LinearLayout> \ No newline at end of file
diff --git a/android/testData/dom/layout/newIdCompl2.xml b/android/testData/dom/layout/newIdCompl2.xml
new file mode 100644
index 00000000000..cbaa0543542
--- /dev/null
+++ b/android/testData/dom/layout/newIdCompl2.xml
@@ -0,0 +1,4 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
+ <Button android:id="@+id/my_id_1"/>
+ <Button android:id="@+id/my_i<caret>"/>
+</LinearLayout> \ No newline at end of file
diff --git a/android/testData/dom/layout/newIdCompl2_after.xml b/android/testData/dom/layout/newIdCompl2_after.xml
new file mode 100644
index 00000000000..63855289639
--- /dev/null
+++ b/android/testData/dom/layout/newIdCompl2_after.xml
@@ -0,0 +1,4 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
+ <Button android:id="@+id/my_id_1"/>
+ <Button android:id="@+id/my_id_1"/>
+</LinearLayout> \ No newline at end of file