Okno dialogowe Java [zamknięte]

Jak wytworzyć następujące okno:

http://postimage.org/image/61aa8hrvb/

Co używałbym do formatowania? Coś podobnego do BorderLayout? Czy jest lepszy sposób?

Próbowałem użyć kombinacji JFrame, JPanel i JTextArea; następująco:

 public static void doListAllChecks() {
    int transCount = CAObject.getTransCount();

    JFrame frame = new JFrame();
    frame.setVisible(true);
    JPanel content = new JPanel();
    for (int idx = 0; idx < transCount; idx++)
    {
        Transaction tObj = CAObject.getTrans(idx);
        if (tObj != null) {
            if (tObj.getTransId() == Constants.CHECK_ID)
            {
                System.out.println("Check ID " + tObj.getTransNumber() +
                        " Check Amount " + tObj.getTransAmount());
                JTextArea textArea = new JTextArea(5,20);
                textArea.setText("Check " + tObj.getTransAmount());
                content.add(textArea, BorderLayout.EAST);
            }
        }
    }

    frame.setContentPane(content);
    frame.setTitle("Dialog Display");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frame.pack();
}

Chcę stworzyć podstawowy i bardzo prosty styl okna. Mam dane, ale nie wiem, jak je utworzyć.

Edytuj: Nie pytam, jak wypełnić okno danymi - tylko jak stworzyć okno. Wygląda na to, że ma tylko stały rozmiar (długość i szerokość) i granicę. Wygląda na to, że jest to proste okno.

Czy jest coś, co można myśleć o tym stylu okna?

questionAnswers(3)

yourAnswerToTheQuestion