Module java.desktop
Package java.awt

Class Insets

java.lang.Object
java.awt.Insets
所有已实现的接口:
Serializable, Cloneable
直接已知的子类:
InsetsUIResource

public class Insets extends Object implements Cloneable, Serializable
Insets对象是容器边框的表示。它指定容器必须在每个边缘留下的空间。该空间可以是边框、空白空间或标题。
自:
1.0
参见:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    底部的插图。
    int
    左侧的插图。
    int
    右侧的插图。
    int
    top
    顶部的插图。
  • Constructor Summary

    Constructors
    Constructor
    Description
    Insets(int top, int left, int bottom, int right)
    创建并初始化具有指定顶部、左侧、底部和右侧插图的新Insets对象。
  • Method Summary

    Modifier and Type
    Method
    Description
    clone()
    创建此对象的副本。
    boolean
    equals(Object obj)
    检查两个插图对象是否相等。
    int
    返回此插图的哈希码。
    void
    set(int top, int left, int bottom, int right)
    将顶部、左侧、底部和右侧设置为指定值
    返回此Insets对象的字符串表示形式。

    Methods declared in class java.lang.Object

    finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • top

      public int top
      顶部的插图。将此值添加到矩形的顶部以得到新的顶部位置。
      参见:
    • left

      public int left
      左侧的插图。将此值添加到矩形的左侧以得到新的左侧边缘位置。
      参见:
    • bottom

      public int bottom
      底部的插图。将此值从矩形的底部减去以得到新的底部位置。
      参见:
  • 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

      public boolean equals(Object obj)
      检查两个插图对象是否相等。如果字段topleftbottomright的四个整数值都相等,则两个Insets实例相等。
      覆盖:
      equals 在类 Object
      参数:
      obj - 用于比较的引用对象。
      返回:
      如果两个插图相等,则返回true;否则返回false
      自:
      1.1
      参见:
    • hashCode

      public int hashCode()
      返回此插图的哈希码。
      覆盖:
      hashCode 在类 Object
      返回:
      此插图的哈希码。
      参见:
    • toString

      public String toString()
      返回此Insets对象的字符串表示形式。此方法仅用于调试目的,返回的字符串的内容和格式可能因实现而异。返回的字符串可能为空,但不会为null
      覆盖:
      toString 在类 Object
      返回:
      Insets对象的字符串表示形式。
    • clone

      public Object clone()
      创建此对象的副本。
      覆盖:
      clone 在类 Object
      返回:
      Insets对象的副本。
      参见: