blob: b297a8aa21f72d002954527f302a2507aee1f92e [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001// Copyright 2008 The Android Open Source Project
2
3/**
4 * Common base class.
5 */
6public 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}