Iface1.java revision 7365493ad8d360c1dcf9cd8b6eee62747af01cae
1// Copyright 2005 The Android Open Source Project
2
3/**
4 * Test stuff.
5 */
6public interface Iface1 {
7
8    public int iFunc1(int ii);
9
10    public float mFloaty = 5.0f;
11
12    public String mWahoo = new String("wahoo");
13}
14