- java.lang.Object
-
- javax.swing.border.AbstractBorder
-
- javax.swing.plaf.metal.MetalBorders.ToolBarBorder
-
- All Implemented Interfaces:
-
Serializable
,Border
,UIResource
,SwingConstants
- Enclosing class:
- MetalBorders
public static class MetalBorders.ToolBarBorder extends AbstractBorder implements UIResource, SwingConstants
该类代表一个JToolBar
的边界。- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface javax.swing.SwingConstants
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
-
-
构造方法摘要
构造方法 Constructor 描述 ToolBarBorder()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Insets
getBorderInsets(Component c, Insets newInsets)
使用此Border的当前Insets重新初始化insets参数。void
paintBorder(Component c, Graphics g, int x, int y, int w, int h)
此默认实现不绘画。-
Methods inherited from class javax.swing.border.AbstractBorder
getBaseline, getBaselineResizeBehavior, getBorderInsets, getInteriorRectangle, getInteriorRectangle, isBorderOpaque
-
-
-
-
方法详细信息
-
paintBorder
public void paintBorder(Component c, Graphics g, int x, int y, int w, int h)
描述从类复制:AbstractBorder
此默认实现不绘画。- Specified by:
-
paintBorder
在接口Border
- 重写:
-
paintBorder
在AbstractBorder
- 参数
-
c
- 正在绘制边框的组件 -
g
- 油漆图形 -
x
- 绘画边框的x位置 -
y
- 绘画边框的y位置 -
w
- 绘制边框的宽度 -
h
- 绘画边框的高度
-
getBorderInsets
public Insets getBorderInsets(Component c, Insets newInsets)
描述从类复制:AbstractBorder
使用此Border的当前Insets重新初始化insets参数。- 重写:
-
getBorderInsets
在AbstractBorder
- 参数
-
c
- 应用此边界插入值的组件 -
newInsets
- 要重新初始化的对象 - 结果
-
insets
对象
-
-