java.lang.Object
java.awt.Insets
- 所有已实现的接口:
-
Serializable
,Cloneable
- 直接已知的子类:
-
InsetsUIResource
Insets
对象是容器边框的表示。它指定容器必须在每个边缘留下的空间。该空间可以是边框、空白空间或标题。
- 自:
- 1.0
- 参见:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionInsets
(int top, int left, int bottom, int right) 创建并初始化具有指定顶部、左侧、底部和右侧插图的新Insets
对象。 -
Method Summary
-
Field Details
-
top
public int top顶部的插图。将此值添加到矩形的顶部以得到新的顶部位置。- 参见:
-
left
public int left左侧的插图。将此值添加到矩形的左侧以得到新的左侧边缘位置。- 参见:
-
bottom
public int bottom底部的插图。将此值从矩形的底部减去以得到新的底部位置。- 参见:
-
right
public int right右侧的插图。将此值从矩形的右侧减去以得到新的右侧边缘位置。- 参见:
-
-
Constructor Details
-
Insets
public Insets(int top, int left, int bottom, int right) 创建并初始化具有指定顶部、左侧、底部和右侧插图的新Insets
对象。- 参数:
-
top
- 顶部的插图。 -
left
- 左侧的插图。 -
bottom
- 底部的插图。 -
right
- 右侧的插图。
-
-
Method Details
-
set
public void set(int top, int left, int bottom, int right) 将顶部、左侧、底部和右侧设置为指定值- 参数:
-
top
- 顶部的插图。 -
left
- 左侧的插图。 -
bottom
- 底部的插图。 -
right
- 右侧的插图。 - 自:
- 1.5
-
equals
检查两个插图对象是否相等。如果字段top
、left
、bottom
和right
的四个整数值都相等,则两个Insets
实例相等。 -
hashCode
public int hashCode()返回此插图的哈希码。 -
toString
返回此Insets
对象的字符串表示形式。此方法仅用于调试目的,返回的字符串的内容和格式可能因实现而异。返回的字符串可能为空,但不会为null
。 -
clone
创建此对象的副本。
-