mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-18 19:07:16 +07:00
12 lines
288 B
Java
12 lines
288 B
Java
// "Create Constructor" "true"
|
|
public class Test {
|
|
public void main2() {
|
|
new MyCollection(this);
|
|
}
|
|
}
|
|
|
|
class MyCollection {
|
|
public MyCollection(Test test) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |