JTabbedPane
JTabbedPane is a component in the Java Swing library that provides a tabbed pane for organizing multiple components within a single window. Each tab displays a title and optional icon, and selecting a tab shows its associated component while hiding the others.
Tabs can be placed at the top, bottom, left, or right of the pane. When many tabs
JTabbedPane supports programmatic control of the currently visible tab, including adding and removing tabs, changing titles
Usage typically involves creating a JTabbedPane, creating a component for each tab, and calling addTab or insertTab
JTabbedPane is a standard Swing component available in javax.swing. It is designed to be used in cross-platform