blob: ba17d45f2f9508c036698c65c1745ea100416b5a [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001// 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}