mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 05:10:22 +07:00
13 lines
191 B
Plaintext
13 lines
191 B
Plaintext
|
|
class Foo {
|
|
|
|
public static final Bar[] bars= new Bar[] {new Bar("a", 0, "A", "B", "C"), new Bar("b", 1, "A", "B")};
|
|
}
|
|
|
|
|
|
class Bar {
|
|
|
|
public Bar(String a, int nr, String... args) {
|
|
}
|
|
|
|
} |