Methods Summary |
---|
public static javax.swing.Icon | getCheckBoxIcon()
if (checkBoxIcon == null) {
checkBoxIcon = new CheckBoxIcon();
}
return checkBoxIcon;
|
public static javax.swing.Icon | getMenuArrowIcon()
if (menuArrowIcon == null) {
menuArrowIcon = new MenuArrowIcon();
}
return menuArrowIcon;
|
public static javax.swing.Icon | getMenuItemArrowIcon()
if (menuItemArrowIcon == null) {
menuItemArrowIcon = new MenuItemArrowIcon();
}
return menuItemArrowIcon;
|
public static javax.swing.Icon | getMenuItemCheckIcon()
if (menuItemCheckIcon == null) {
menuItemCheckIcon = new MenuItemCheckIcon();
}
return menuItemCheckIcon;
|
public static javax.swing.Icon | getRadioButtonIcon()
if (radioButtonIcon == null) {
radioButtonIcon = new RadioButtonIcon();
}
return radioButtonIcon;
|