Can this be made in Java? [closed]

Sounds like you need a Swing TabbedPane

With the JTabbedPane class, you can have several components, such as
panels, share the same space. The user chooses which component to view
by selecting the tab corresponding to the desired component. If you
want similar functionality without the tab interface, you can use a
card layout instead of a tabbed pane.

Leave a Comment