mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
12 lines
197 B
Java
12 lines
197 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private final String text;
|
|
|
|
public Foo(String text) {
|
|
this.text = text;
|
|
}
|
|
|
|
public Foo(int i, String text) {
|
|
this.text = text;
|
|
}
|
|
} |