jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame^] | 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 | } |