I\'m working in with a JTabbedPane, I need to add a close button in the tabs to close the current one.
I have been searching and as I understand I must extend from J
jbCloseButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { int index = jtbMainTabbedPane.indexOfTabComponent(jbCloseButton); jtbMainTabbedPane.remove(index); } });