所有类
javax.swing.border
类 EmptyBorder
java.lang.Object
javax.swing.border.AbstractBorder
javax.swing.border.EmptyBorder
-
所有已实现的接口:
-
Serializable, Border
-
直接已知子类:
-
BorderUIResource.EmptyBorderUIResource, MatteBorder
-
public class EmptyBorder
- extends AbstractBorder
- implements Serializable
该类提供了一个占用空间但不执行绘制的空透明边框。
警告:此类已序列化的对象将不再与以后的 Swing 版本兼容。当前的序列化支持适合于在运行相同 Swing 版本的应用程序之间短期存储或 RMI。从 1.4 版开始,已在 java.beans
包中加入对所有 JavaBeansTM 的长期存储支持。请参见 XMLEncoder
。
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
left
protected int left
right
protected int right
top
protected int top
bottom
protected int bottom
EmptyBorder
public EmptyBorder(int top,
int left,
int bottom,
int right)
-
创建具有指定 insets 的空边框
-
参数:
-
top
- 边框顶部 inset
-
left
- 边框左部 inset
-
bottom
- 边框底部 inset
-
right
- 边框右部 inset
EmptyBorder
public EmptyBorder(Insets borderInsets)
-
创建具有指定 insets 的空边框
-
参数:
-
borderInsets
- 边框的 insets
paintBorder
public void paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height)
-
默认情况下不执行绘制。
-
-
指定者:
-
接口
Border
中的 paintBorder
-
覆盖:
-
类
AbstractBorder
中的 paintBorder
-
-
参数:
-
c
- 要为其绘制边框的组件
-
g
- 绘制的图形
-
x
- 所绘制边框的 x 坐标位置
-
y
- 所绘制边框的 y 坐标位置
-
width
- 所绘制边框的宽度
-
height
- 所绘制边框的高度
getBorderInsets
public Insets getBorderInsets(Component c)
-
返回此边框的 insets
-
-
指定者:
-
接口
Border
中的 getBorderInsets
-
覆盖:
-
类
AbstractBorder
中的 getBorderInsets
-
-
参数:
-
c
- 应用此边框 insets 值的组件
-
返回:
-
已初始化为 0 的新
Insets
对象
getBorderInsets
public Insets getBorderInsets(Component c,
Insets insets)
-
用此边框的当前 Insets 重新初始化 insets 参数
-
-
覆盖:
-
类
AbstractBorder
中的 getBorderInsets
-
-
参数:
-
c
- 应用此边框 insets 值的组件
-
insets
- 要重新初始化的对象
-
返回:
-
insets
对象