public class MainFrame extends JFrame { public MainFrame( String titre ) { super( titre ); tablePanel = new TablePanel( DATA, TITRES ); add( tablePanel, BorderLayout.CENTER ); setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); setSize( 500, 200 ); setLocationRelativeTo( null ); } private TablePanel tablePanel; // private final static Object[][] DATA = { { "Handel", "George Frideric", 1685, 1759 }, { "Dvorak", "Anton", 1841, 1904 }, ... { "Beethoven", "Ludwig van", 1770, 1827 } }; private final static String[] TITRES = { "Nom", "Prénom", "Naissance", "Décé" }; }