import java.awt.*; import javax.swing.*; public class SwingiTabel extends JApplet { static JTable korrutustabel(){ Object[][] andmed=new Object[10][10]; for (int i=1;i<=10;i++) for (int j=1;j<=10;j++) andmed[i-1][j-1]=i*j+""; JTable tabel=new JTable(andmed, andmed[0]); //andmed ja pealkiri, milleks on ühega korrutamise rida. return tabel; } public void init(){ getContentPane().add(new JScrollPane(korrutustabel())); } public static void main(String args[]) { JFrame f=new JFrame("Swingitabel"); f.setSize(250,250); f.getContentPane().add(new JScrollPane(korrutustabel())); f.setVisible(true); } }