jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame^] | 1 | // Copyright 2006 The Android Open Source Project |
2 | |||||
3 | /** | ||||
4 | * Blah. | ||||
5 | */ | ||||
6 | public class ImplA implements Iface1, Iface2 { | ||||
7 | |||||
8 | public int iFunc1(int ii) { | ||||
9 | return ii+1; | ||||
10 | } | ||||
11 | public int iFunc2(int ii) { | ||||
12 | return ii+2; | ||||
13 | } | ||||
14 | } |