Home | History | Annotate | Download | only in src
      1 // Copyright 2008 The Android Open Source Project
      2 
      3 /**
      4  * Common base class.
      5  */
      6 public class Base {
      7     public Base() {}
      8 
      9     public DoubledExtend getExtended() {
     10         return new DoubledExtend();
     11     }
     12 
     13     public static String doStuff(DoubledExtend dt) {
     14         return dt.getStr();
     15     }
     16 }
     17