aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/GetMethods.java
blob: 69cc49fa3a510c23f1199f606c6accd468af5469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package test3;

class SuperGetMethods {
    public int f0;
    protected double d0;
    String s0;
    private char c0;

    public void mpub0() {}
    protected void mpro0() {}
    void mpack0() {}
    private void mpri0() {}
}

public class GetMethods extends SuperGetMethods {
    public GetMethods(int i) {}
    protected GetMethods(String i, int j) {}
    GetMethods() {}
    private GetMethods(int i, int j) {}

    public int f;
    protected double d;
    String s;
    private char c;

    public void mpub() {}
    protected void mpro() {}
    void mpack() {}
    private void mpri() {}
}