blob: 6ad2708b11eaa23653b469d3735a1842071e3605 [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001// Copyright 2008 The Android Open Source Project
2
3/**
4 * Doubled sub-class, form #2.
5 */
6public class DoubledExtend extends Base {
7 public DoubledExtend() {
8 //System.out.println("Ctor: doubled extend, type 2");
9 }
10
11 @Override
12 public DoubledExtend getExtended() {
13 //System.out.println("getExtended 2");
14 return new DoubledExtend();
15 }
16
17 public String getStr() {
18 return "DoubledExtend 2";
19 }
20}