Как я могу добавить, установить видимые и bounts, мои "images / name.jpg" в мой контейнер окна ContentPane?
public class WindowName extends JFrame
{
public WindowName()
{
JFrame Window = new JFrame();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setTitle("...");
setSize(700, 600);
setVisible(true);
Container powZawartosci = getContentPane();
powZawartosci.setLayout(null);
}
}