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