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