模块  java.desktop
软件包  javax.swing.border

Class EmptyBorder

    • 字段详细信息

      • left

        protected int left
        边界的左边插图。
      • right

        protected int right
        边界的正确插图。
      • top

        protected int top
        边界的顶部插图。
      • bottom

        protected int bottom
        边界的底部插图。
    • 构造方法详细信息

      • EmptyBorder

        public EmptyBorder​(int top,
                           int left,
                           int bottom,
                           int right)
        使用指定的insets创建空边框。
        参数
        top - 边界的顶部插图
        left - 边界的左侧插图
        bottom - 边框的底部插图
        right - 边界的右边插图
      • EmptyBorder

        @ConstructorProperties("borderInsets")
        public EmptyBorder​(Insets borderInsets)
        使用指定的insets创建空边框。
        参数
        borderInsets - 边界的插图
    • 方法详细信息

      • paintBorder

        public void paintBorder​(Component c,
                                Graphics g,
                                int x,
                                int y,
                                int width,
                                int height)
        默认情况下没有绘图。
        Specified by:
        paintBorder ,界面 Border
        重写:
        paintBorder在类 AbstractBorder
        参数
        c - 正在为其绘制边框的组件
        g - 油漆图形
        x - 绘制边框的x位置
        y - 绘制边框的y位置
        width - 绘边框的宽度
        height - 绘边框的高度
      • getBorderInsets

        public Insets getBorderInsets​(Component c,
                                      Insets insets)
        使用此Border的当前Insets重新初始化insets参数。
        重写:
        getBorderInsets ,类 AbstractBorder
        参数
        c - 应用此border insets值的组件
        insets - 要重新初始化的对象
        结果
        insets对象
      • getBorderInsets

        public Insets getBorderInsets()
        返回边框的insets。
        结果
        包含顶部,左侧,底部和右侧的插入的 Insets对象
        从以下版本开始:
        1.3