mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
12 lines
274 B
Java
12 lines
274 B
Java
// "Create Class 'MyTableModel'" "true"
|
|
import javax.swing.*;
|
|
import javax.swing.table.TableModel;
|
|
|
|
public class Test {
|
|
public static void main() {
|
|
JTable table = new JTable(new MyTableModel());
|
|
}
|
|
}
|
|
|
|
<caret>public class MyTableModel implements TableModel {
|
|
} |