1package 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}
14