| The Android Open Source Project | 2ad60cf | 2008-10-21 07:00:00 -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 | } | ||||
| 15 | |||||