mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
15 lines
323 B
Java
15 lines
323 B
Java
// "Create Constructor" "true"
|
|
public class Test {
|
|
public static void main() {
|
|
new MyCollection(10);
|
|
}
|
|
}
|
|
|
|
class MyCollection {
|
|
public MyCollection() {
|
|
}
|
|
|
|
public MyCollection(int i) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |