blob: 37bc1f283c268b81fd3217bba23d9f6db9e5f2c3 [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();
}
}