mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
13 lines
284 B
Java
13 lines
284 B
Java
// "Create Class 'MyCollection'" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public static void main() {
|
|
Collection c = new Test.MyCollection(1);
|
|
}
|
|
|
|
public class MyCollection implements Collection {
|
|
public MyCollection(int i) {<caret>
|
|
}
|
|
}
|
|
} |