- java.lang.Object
-
- javax.swing.plaf.basic.BasicIconFactory
-
- All Implemented Interfaces:
-
Serializable
public class BasicIconFactory extends Object implements Serializable
工厂对象可以将图标适用于基本的L&F警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4开始,对于所有JavaBeans的长期存储的支持已被添加到
java.beans
包中。 请参阅XMLEncoder
。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 BasicIconFactory()
-
方法摘要
所有方法 静态方法 具体的方法 Modifier and Type 方法 描述 static Icon
createEmptyFrameIcon()
返回空框图标。static Icon
getCheckBoxIcon()
返回复选框图标。static Icon
getCheckBoxMenuItemIcon()
返回一个复选框菜单项图标。static Icon
getMenuArrowIcon()
返回菜单箭头图标。static Icon
getMenuItemArrowIcon()
返回菜单项箭头图标。static Icon
getMenuItemCheckIcon()
返回菜单项检查图标。static Icon
getRadioButtonIcon()
返回单选按钮图标。static Icon
getRadioButtonMenuItemIcon()
返回单选按钮菜单项图标。
-
-
-
方法详细信息
-
getMenuItemCheckIcon
public static Icon getMenuItemCheckIcon()
返回菜单项检查图标。- 结果
- 菜单项检查图标
-
getMenuItemArrowIcon
public static Icon getMenuItemArrowIcon()
返回菜单项箭头图标。- 结果
- 菜单项箭头图标
-
getMenuArrowIcon
public static Icon getMenuArrowIcon()
返回菜单箭头图标。- 结果
- 菜单箭头图标
-
getCheckBoxIcon
public static Icon getCheckBoxIcon()
返回复选框图标。- 结果
- 一个复选框图标
-
getRadioButtonIcon
public static Icon getRadioButtonIcon()
返回单选按钮图标。- 结果
- 单选按钮图标
-
getCheckBoxMenuItemIcon
public static Icon getCheckBoxMenuItemIcon()
返回一个复选框菜单项图标。- 结果
- 一个复选框菜单项图标
-
getRadioButtonMenuItemIcon
public static Icon getRadioButtonMenuItemIcon()
返回单选按钮菜单项图标。- 结果
- 单选按钮菜单项图标
-
createEmptyFrameIcon
public static Icon createEmptyFrameIcon()
返回空框图标。- 结果
- 一个空的框架图标
-
-