Home | History | Annotate | Download | only in src
      1 // Copyright 2006 The Android Open Source Project
      2 
      3 /**
      4  * Blah.
      5  */
      6 public class ImplB implements Iface1, Iface2 {
      7 
      8     public int iFunc1(int ii) {
      9         return ii+10;
     10     }
     11     public int iFunc2(int ii) {
     12         return ii+20;
     13     }
     14 
     15     public static String mWhoami = new String("ImplB!");
     16 }
     17