Я хочу добавить две jPanels в JFrame рядом.два блока - это jpanels, а внешний блок - это jframe
У меня есть эти строки кода.У меня есть один класс с именем seatinPanel, который расширяет JPanel, и внутри этого класса у меня есть конструктор и один метод с именем utilityButtons, который возвращает объект JPanel.Я хочу, чтобы утилита Buttons JPanel находилась с правой стороны.код, который у меня есть, отображает только кнопки utillityButtons JPanel, когда он выполняется.
public guiCreator()
{
setTitle("Passenger Seats");
//setSize(500, 600);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container contentPane = getContentPane();
seatingPanel seatingPanel1 = new seatingPanel();//need to declare it here separately so we can add the utilityButtons
contentPane.add(seatingPanel1); //adding the seats
contentPane.add(seatingPanel1.utilityButtons());//adding the utility buttons
pack();//Causes this Window to be sized to fit the preferred size and layouts of its subcomponents
setVisible(true);
}