mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +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) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection><caret>
|
|
}
|
|
}
|
|
} |