List of usage examples for javax.swing JTabbedPane getComponentAt
public Component getComponentAt(int index)
index
. From source file:plugin.notes.NotesPlugin.java
/** * Changes to the notes plugin as the active tab * * @param evt//from w ww. j a v a 2 s . c o m * Action Event of a click on the tool menu item */ private static void toolMenuItem(ActionEvent evt) { JTabbedPane tp = GMGenSystemView.getTabPane(); IntStream.range(0, tp.getTabCount()).filter(i -> tp.getComponentAt(i) instanceof NotesView) .forEach(tp::setSelectedIndex); }