aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/Inner2.java
blob: b9d81667acc922f4c6f31ed8b74e1330c61b6818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package test2;

/**
 * Used by test2.Inner
 */
public class Inner2 {
    public static class Child {
        public int value;
    }

    private java.util.Properties p;
    private Child c;

    public Inner2(java.util.Properties props, Child child) {
        p = props;
        c = child;
    }

    public void print() {
        System.out.println(p);
        System.out.println(c);
    }
}