aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/GetMethods.java
blob: 64e66bd0c65b481ad78a269a3463204f8d3c4211 (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
31
32
package test3;

@SuppressWarnings("unused")
class SuperGetMethods {
    public int f0;
    protected double d0;
    String s0;
    private char c0;

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

@SuppressWarnings("unused")
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() {}
}