summaryrefslogtreecommitdiff
path: root/tests/064-field-access/src/other/OtherPackage.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/064-field-access/src/other/OtherPackage.java')
-rw-r--r--tests/064-field-access/src/other/OtherPackage.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/064-field-access/src/other/OtherPackage.java b/tests/064-field-access/src/other/OtherPackage.java
new file mode 100644
index 0000000..a595db5
--- /dev/null
+++ b/tests/064-field-access/src/other/OtherPackage.java
@@ -0,0 +1,15 @@
+// Copyright 2008 The Android Open Source Project
+
+package other;
+
+/*
+ * Declare a few fields to reflect upon.
+ */
+public class OtherPackage {
+ public char pubCharField = 0x8765;
+
+ protected short protShortField = 0x1234;
+ protected Object protObjectField = "blah";
+
+ double pkgDoubleField = 3.141592654;
+}