blob: a595db54ce993cbd986a39596fdd43a840a6e5c0 [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001// Copyright 2008 The Android Open Source Project
2
3package other;
4
5/*
6 * Declare a few fields to reflect upon.
7 */
8public class OtherPackage {
9 public char pubCharField = 0x8765;
10
11 protected short protShortField = 0x1234;
12 protected Object protObjectField = "blah";
13
14 double pkgDoubleField = 3.141592654;
15}