Home | History | Annotate | Download | only in other
      1 // Copyright 2008 The Android Open Source Project
      2 
      3 package other;
      4 
      5 /*
      6  * Declare a few fields to reflect upon.
      7  */
      8 public 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 }
     16