Lines Matching refs:page

947             /* if we're removing the selected page */
1145 Page page = pages.get(index);
1146 if (page.disabledIcon == null) {
1147 page.disabledIcon = UIManager.getLookAndFeel().getDisabledIcon(this, page.icon);
1149 return page.disabledIcon;
1246 Page page = pages.get(tabIndex);
1247 return page.getMnemonic();
1267 Page page = pages.get(tabIndex);
1268 return page.getDisplayedMnemonicIndex();
1316 Page page = pages.get(index);
1317 String oldTitle =page.title;
1318 page.title = title;
1323 page.updateDisplayedMnemonicIndex();
1360 Page page = pages.get(index);
1361 Icon oldIcon = page.icon;
1363 page.icon = icon;
1366 * generated the disabled icon for this page, then
1367 * clear the disabledIcon field of the page.
1369 if (page.disabledIcon instanceof UIResource) {
1370 page.disabledIcon = null;
1541 Page page = pages.get(index);
1542 if (component != page.component) {
1545 if (page.component != null) {
1547 (SwingUtilities.findFocusOwner(page.component) != null);
1550 // why not if (page.component.getParent() == this) remove(component)
1555 if (children[i] == page.component) {
1562 page.component = component;
1625 Page page = pages.get(tabIndex);
1627 page.setDisplayedMnemonicIndex(mnemonicIndex);
1665 Page page = pages.get(tabIndex);
1666 page.setMnemonic(mnemonic);
2062 * initializes the AccessibleContext for the page
2090 * Sets the page displayed mnemonic index
2107 * Returns the page displayed mnemonic index
2316 * @return the enabled icon if one exists and the page
2318 * one exists and the page is disabled. Otherwise, null