mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 14:20:55 +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 {
|
|
} |