|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.border
类 LineBorder
java.lang.Object javax.swing.border.AbstractBorder javax.swing.border.LineBorder
- 所有已实现的接口:
- Serializable, Border
-
public class LineBorder
- extends AbstractBorder
实现单色、任意厚度线边框的类。
警告:此类的已序列化对象与以后的 Swing 版本不兼容。当前序列化支持适用于短期存储,或适用于在运行相同 Swing 版本的应用程序之间进行 RMI(Remote Method Invocation,远程方法调用)。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
字段摘要 | |
---|---|
protected Color |
lineColor |
protected boolean |
roundedCorners |
protected int |
thickness |
构造方法摘要 | |
---|---|
LineBorder(Color color) 创建具有指定颜色、厚度为 1(thickness = 1)的线边框。 |
|
LineBorder(Color color, int thickness) 创建具有指定颜色和厚度的线边框。 |
|
LineBorder(Color color, int thickness, boolean roundedCorners) 创建具有指定颜色、厚度和拐角形状的线条边框。 |
方法摘要 | |
---|---|
static Border |
createBlackLineBorder() 获取一个颜色为黑色、厚度为 1 的线边框的便捷方法。 |
static Border |
createGrayLineBorder() 获取一个颜色为灰色、厚度为 1 的线条边框的便捷方法。 |
Insets |
getBorderInsets(Component c) 返回边框的 insets。 |
Insets |
getBorderInsets(Component c, Insets insets) 用此边框的当前 Insets 重新初始化 insets 参数。 |
Color |
getLineColor() 返回边框的颜色。 |
boolean |
getRoundedCorners() 返回是否将此边框绘制为圆弧拐角边框。 |
int |
getThickness() 返回边框的厚度。 |
boolean |
isBorderOpaque() 返回此边框是否透明。 |
void |
paintBorder(Component c, Graphics g, int x, int y, int width, int height) 按照指定的位置和尺寸为指定的组件绘制边框。 |
从类 javax.swing.border.AbstractBorder 继承的方法 |
---|
getInteriorRectangle, getInteriorRectangle |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
thickness
protected int thickness
lineColor
protected Color lineColor
roundedCorners
protected boolean roundedCorners
构造方法详细信息 |
---|
LineBorder
public LineBorder(Color color)
-
创建具有指定颜色、厚度为 1(thickness = 1)的线边框。
- 参数:
-
color
- 边框的颜色。
LineBorder
public LineBorder(Color color, int thickness)
-
创建具有指定颜色和厚度的线边框。
- 参数:
-
color
- 边框的颜色 -
thickness
- 边框的厚度
LineBorder
public LineBorder(Color color, int thickness, boolean roundedCorners)
-
创建具有指定颜色、厚度和拐角形状的线条边框。
- 参数:
-
color
- 边框的颜色 -
thickness
- 边框的厚度 -
roundedCorners
- 边框拐角是否应为弧形 - 从以下版本开始:
- 1.3
方法详细信息 |
---|
createBlackLineBorder
public static Border createBlackLineBorder()
- 获取一个颜色为黑色、厚度为 1 的线边框的便捷方法。
-
createGrayLineBorder
public static Border createGrayLineBorder()
- 获取一个颜色为灰色、厚度为 1 的线条边框的便捷方法。
-
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
- 所绘制边框的高度