Ben bir JFrame içindeki bölüme farklı bir panel import etmeyi deniyorum aslında ancak kodlarda da gördüğünüz gibi console yazdırma işleminde sıkıntı yok. bütün satır verileri yazdırılıyor doğru şekilde ancak ilgili panel gösterilmiyor bir türlü.

table.addMouseListener(new MouseAdapter() {
              @Override
              public void mouseClicked(MouseEvent e) {
                if (e.getClickCount() == 2) {
                   
                    int selectedRow = table.getSelectedRow();
                    if (selectedRow != -1) {
                        int customerId = Integer.parseInt(table.getValueAt(selectedRow, 0).toString());
                        String customerName = table.getValueAt(selectedRow, 1).toString();
                        String customerSurname = table.getValueAt(selectedRow, 2).toString();
                        String customerCity = table.getValueAt(selectedRow, 3).toString();
                        String customerPhone = table.getValueAt(selectedRow, 4).toString();
                        String customerMail = table.getValueAt(selectedRow, 5).toString();

                        customerUpdate = new CustomerUpdate(customerId, customerName, customerSurname, customerCity, customerPhone, customerMail);
                        customerUpdate.setVisible(true);
                        System.out.println("id : "+customerId+" name : "+customerName+" surname : "+customerSurname+" city : "+customerCity+" phone : "+customerPhone+" mail : "+customerMail);
                    }
                  }
                }
            });