blob: b297a8aa21f72d002954527f302a2507aee1f92e [file] [log] [blame]
// Copyright 2008 The Android Open Source Project
/**
* Common base class.
*/
public class Base {
public Base() {}
public DoubledExtend getExtended() {
return new DoubledExtend();
}
public static String doStuff(DoubledExtend dt) {
return dt.getStr();
}
}