• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2005 The Android Open Source Project
2 
3 /**
4  * Test stuff.
5  */
6 public interface Iface1 {
7 
iFunc1(int ii)8     public int iFunc1(int ii);
9 
10     public float mFloaty = 5.0f;
11 
12     public String mWahoo = new String("wahoo");
13 }
14