mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
14 lines
305 B
Java
14 lines
305 B
Java
// "Create inner class 'MyTableModel'" "true-preview"
|
|
|
|
public class Test {
|
|
public static void main() {
|
|
JTable table = new JTable(new MyTableModel());
|
|
}
|
|
|
|
private static class MyTableModel implements TableModel {
|
|
}
|
|
}
|
|
class JTable {
|
|
JTable(TableModel t) {}
|
|
}
|
|
interface TableModel {} |