mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
11 lines
181 B
Java
11 lines
181 B
Java
class Test {
|
|
private int a;
|
|
private final int b;
|
|
private int c;
|
|
private final int d;
|
|
|
|
public Test(int b, int d) {
|
|
this.b = b;
|
|
this.d = d;
|
|
}
|
|
} |