(String title, Font font, char icon, float size)
| 671 | /// |
| 672 | /// component instance |
| 673 | protected Component createTab(String title, Font font, char icon, float size) { |
| 674 | RadioButton b = new RadioButton(title != null ? title : ""); |
| 675 | if (tabUIID != null) { |
| 676 | b.setUIID(tabUIID); |
| 677 | } |
| 678 | applyTabIconUIID(b); |
| 679 | b.setFontIcon(font, icon, size); |
| 680 | createTabImpl(b); |
| 681 | return b; |
| 682 | } |
| 683 | |
| 684 | /// Detaches the tab's icon style from the Button's selection-state styles. |
| 685 | /// FontImage.setIcon copies the Button's unselected/selected/pressed styles |
no test coverage detected