mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
15 lines
288 B
Java
15 lines
288 B
Java
// "Create class 'MyCollection'" "true"
|
|
import java.util.*;
|
|
|
|
class Test extends Foo {
|
|
public void main() {
|
|
Collection c = new Foo.MyCollection(1);
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
public class MyCollection implements Collection {
|
|
public MyCollection(int i) {
|
|
}
|
|
}
|
|
} |