mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
13 lines
284 B
Java
13 lines
284 B
Java
// "Create Constructor" "true"
|
|
class Test {
|
|
|
|
public void t() {
|
|
new Inner("a"){};
|
|
}
|
|
|
|
class Inner {
|
|
public Inner(String a) {
|
|
<caret><selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
} |