summaryrefslogtreecommitdiff
path: root/tests/022-interface/src/Iface1.java
blob: ba17d45f2f9508c036698c65c1745ea100416b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2005 The Android Open Source Project

/**
 * Test stuff.
 */
public interface Iface1 {

    public int iFunc1(int ii);

    public float mFloaty = 5.0f;

    public String mWahoo = new String("wahoo");
}