mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
199 B
Java
12 lines
199 B
Java
// "Add constructor parameter" "true"
|
|
class Foo {
|
|
private final String text;
|
|
|
|
public Foo(String text) {
|
|
this.text = text;
|
|
}
|
|
|
|
public Foo(int i, String text) {
|
|
this.text = text;
|
|
}
|
|
} |