model3 = new TotalWordWeightTable();
jTable3 = new JTable(model3);
jTable3.setModel(model3);
jTable3.setFillsViewportHeight(true);
jTable3.setPreferredSize(new java.awt.Dimension(214, 5000*TABLE_HEIGHT));
jTable3.setToolTipText("weight");
// jTable2.addMouseListener(new MyMouseListener()); // MouseListener등록
//Create the scroll pane and add the table to it.
scrollPane3 = new JScrollPane(jTable3);
//Add the scroll pane to this panel.
jInternalFrame1.getContentPane().add(scrollPane3);//internalFrame에 넣는다.
scrollPane3.setBounds(200, 31, 300, 139);