mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
15 lines
451 B
Java
15 lines
451 B
Java
// "Create Constructor" "true"
|
|
class Outer {
|
|
public Outer(String s) {
|
|
}
|
|
|
|
void method(Outer other) {
|
|
other.new CreateConstructorFromUsage("parameter"); // invoke "Create Constructor" quick fix here
|
|
}
|
|
|
|
class CreateConstructorFromUsage {
|
|
public CreateConstructorFromUsage(String parameter) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
} |