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 15