android_build/tools/apicheck
Jesse Wilson 32fd763272 Fixing apicheck to cope with interfaces inherited from other interfaces.
For example, in Java 5, FutureTask was declared like this:
    public class FutureTask<V> implements Runnable, Future<V> {}

In Java 6, it's declared like this:
    public class FutureTask<V> implements RunnableFuture<V> {}
    public interface RunnableFuture extends Runnable, Future<V> {}

Change-Id: I0cd66a655fbe7fd5c7c48099d656b7a39368dac4
2010-04-08 09:44:42 -07:00
..
etc auto import from //depot/cupcake/@135843 2009-03-03 19:28:42 -08:00
src Fixing apicheck to cope with interfaces inherited from other interfaces. 2010-04-08 09:44:42 -07:00
Android.mk auto import from //depot/cupcake/@135843 2009-03-03 19:28:42 -08:00