- java.lang.Object
-
- javax.swing.plaf.metal.MetalIconFactory.FolderIcon16
-
- All Implemented Interfaces:
-
Serializable
,Icon
- 已知直接子类:
-
MetalIconFactory.TreeFolderIcon
- Enclosing class:
- MetalIconFactory
public static class MetalIconFactory.FolderIcon16 extends Object implements Icon, Serializable
警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4开始,对于所有JavaBeans的长期存储的支持已被添加到
java.beans
包中。 请参阅XMLEncoder
。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 FolderIcon16()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getAdditionalHeight()
返回图标的附加高度。int
getIconHeight()
返回图标的高度。int
getIconWidth()
返回图标的宽度。int
getShift()
返回图标的移动。void
paintIcon(Component c, Graphics g, int x, int y)
在指定位置绘制图标。
-
-
-
方法详细信息
-
paintIcon
public void paintIcon(Component c, Graphics g, int x, int y)
描述从接口Icon
复制在指定位置绘制图标。 图标实现可以使用Component参数来获取对绘画有用的属性,例如前景色或背景色。
-
getShift
public int getShift()
返回图标的移动。- 结果
- 图标的移动
-
getAdditionalHeight
public int getAdditionalHeight()
返回图标的附加高度。- 结果
- 额外高度的图标
-
getIconWidth
public int getIconWidth()
说明从接口Icon
复制返回图标的宽度。- Specified by:
-
getIconWidth
在接口Icon
- 结果
- int指定图标的固定宽度。
-
getIconHeight
public int getIconHeight()
说明从接口Icon
复制返回图标的高度。- Specified by:
-
getIconHeight
在接口Icon
- 结果
- 一个int指定图标的固定高度。
-
-