JavaTM 2 Platform
Standard Ed. 6

java.awt
類別 Insets

java.lang.Object
  繼承者 java.awt.Insets
所有已實作的介面:
Serializable, Cloneable
直接已知子類別:
InsetsUIResource

public class Insets
extends Object
implements Cloneable, Serializable

Insets 物件是容器邊界的表示形式。它指定容器必須在其各個邊緣留出的空間。這個空間可以是邊界、空白空間或標題。

從以下版本開始:
JDK1.0
另請參見:
LayoutManager, Container, 序列化表格

欄位摘要
 int bottom
          底部的 inset。
 int left
          左邊的 inset。
 int right
          右邊的 inset。
 int top
          頂部的 inset。
 
建構子摘要
Insets(int top, int left, int bottom, int right)
          創建並初始化具有指定頂部、左邊、底部、右邊 inset 的新 Insets 物件。
 
方法摘要
 Object clone()
          創建此物件的副本。
 boolean equals(Object obj)
          檢查兩個 insets 物件是否等價。
 int hashCode()
          返回此 Insets 的雜湊碼。
 void set(int top, int left, int bottom, int right)
          將頂部、底部、左邊和右邊設置為指定值
 String toString()
          返回此 Insets 物件的字元串表示形式。
 
從類別 java.lang.Object 繼承的方法
finalize, getClass, notify, notifyAll, wait, wait, wait
 

欄位詳細資訊

top

public int top
頂部的 inset。將此值添加到長方形的 Top,以產生一個新的 Top 位置。

另請參見:
clone()

left

public int left
左邊的 inset。將此值添加到長方形的 Left,以產生一個新的 Left 邊緣位置。

另請參見:
clone()

bottom

public int bottom
底部的 inset。從長方形的 Bottom 減去此值,以產生一個新的 Bottom 位置。

另請參見:
clone()

right

public int right
右邊的 inset。從長方形的 Right 減去此值,以產生一個新的 Right 邊緣位置。

另請參見:
clone()
建構子詳細資訊

Insets

public Insets(int top,
              int left,
              int bottom,
              int right)
創建並初始化具有指定頂部、左邊、底部、右邊 inset 的新 Insets 物件。

參數:
top - 頂部的 inset。
left - 左邊的 inset。
bottom - 底部的 inset。
right - 右邊的 inset。
方法詳細資訊

set

public void set(int top,
                int left,
                int bottom,
                int right)
將頂部、底部、左邊和右邊設置為指定值

參數:
top - 頂部的 inset。
left - 左邊的 inset。
bottom - 底部的 inset。
right - 右邊的 inset。
從以下版本開始:
1.5

equals

public boolean equals(Object obj)
檢查兩個 insets 物件是否等價。如果兩個 Insets 實例的欄位 topleftbottomright 四個整數值都相等,則它們是等價的。

覆寫:
類別 Object 中的 equals
參數:
obj - 要與之比較的參考物件。
返回:
如果兩個 insets 等價,則返回 true;否則返回 false
從以下版本開始:
JDK1.1
另請參見:
Object.hashCode(), Hashtable

hashCode

public int hashCode()
返回此 Insets 的雜湊碼。

覆寫:
類別 Object 中的 hashCode
返回:
此 Insets 的雜湊碼。
另請參見:
Object.equals(java.lang.Object), Hashtable

toString

public String toString()
返回此 Insets 物件的字元串表示形式。此方法僅在進行除錯的時候使用,對於不同的實作,返回的字元串的內容和格式可能有所不同。返回的字元串可能為空,但不可能為 null

覆寫:
類別 Object 中的 toString
返回:
Insets 物件的字元串表示。

clone

public Object clone()
創建此物件的副本。

覆寫:
類別 Object 中的 clone
返回:
Insets 物件的副本。
另請參見:
Cloneable

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only