blob: c2b43b598a03ec40eef8d3de2bdb32cf6d90e06b [file] [log] [blame]
The Android Open Source Project0eec4642012-04-01 00:00:00 -07001package tests.api.java.util.support;
2
3public class A implements I {
4 private static P pp = new P();
5
6 public A() {
7 pp.setClazz(getClass());
8 }
9
10 public String find(String key) {
11 return pp.findProp(key);
12 }
13}