public class Insets extends Object implements Cloneable, Serializable
Insets
对象是容器边框的表示。
它指定容器必须在其每个边缘处留下的空间。
空格可以是边框,空格或标题。
LayoutManager
, Container
, Serialized Form
Modifier and Type | Field and Description |
---|---|
int |
bottom
从底部的插图。
|
int |
left
从左边的插图。
|
int |
right
从右边插入。
|
int |
top
从顶部的插图。
|
Constructor and Description |
---|
Insets(int top, int left, int bottom, int right)
使用指定的顶部,左侧,底部和右侧
Insets 创建并初始化新的
Insets 对象。
|
public int top
clone()
public int left
clone()
public int bottom
clone()
public int right
clone()
public Insets(int top, int left, int bottom, int right)
Insets
创建并初始化新的
Insets
对象。
top
- 从顶部的插图。
left
- 从左边的插图。
bottom
- 从底部的插图。
right
- 从右边的插图。
public void set(int top, int left, int bottom, int right)
top
- 从顶部的插图。
left
- 从左边的插图。
bottom
- 从底部的插图。
right
- 从右边的插图。
public boolean equals(Object obj)
Insets
都是平等的,如果字段的四个整数值top
, left
, bottom
和right
都相等。
equals
在类别
Object
obj
- 与之比较的参考对象。
true
如果两个插图相等;
否则false
。
Object.hashCode()
, HashMap
public int hashCode()
hashCode
在
Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
public String toString()
Insets
对象的字符串表示形式。
该方法仅用于调试目的,并且返回的字符串的内容和格式可能因实现而异。
返回的字符串可能为空,但可能不是null
。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.