blob: 88846fa5e10d436f01fb16b16b679c926d1cead1 [file] [log] [blame]
// Copyright 2008 Google Inc. All Rights Reserved.
/**
* Doubled sub-class, form #2.
*/
public class DoubledImplement implements ICommon {
public DoubledImplement() {
System.out.println("Ctor: doubled implement, type 2");
}
public DoubledImplement getDoubledInstance() {
return new DoubledImplement();
}
public void two() {
System.out.println("DoubledImplement two");
}
}