blob: 619fa005b1cb6cc4382bbcc193c68df2ed784676 [file] [log] [blame]
// Copyright 2006 The Android Open Source Project
/**
* Blah.
*/
public class ImplB implements Iface1, Iface2 {
public int iFunc1(int ii) {
return ii+10;
}
public int iFunc2(int ii) {
return ii+20;
}
public static String mWhoami = new String("ImplB!");
}