Class Borders


  • @Deprecated
    public final class Borders
    extends java.lang.Object
    Deprecated.
    Replaced by Paddings.
    Provides constants and factory methods for paddings (empty borders) that use instances of ConstantSize to define the margins.

    Examples:

     Borders.DLU2
     Borders.createEmptyBorder(Sizes.DLUY4, Sizes.DLUX2, Sizes.DLUY4, Sizes.DLUX2);
     Borders.createEmptyBorder("4dlu, 2dlu, 4dlu, 2dlu");
     
    Version:
    $Revision: 1.14 $
    See Also:
    Border, Sizes
    • Field Detail

      • EMPTY

        public static final javax.swing.border.EmptyBorder EMPTY
        Deprecated.
        A prepared and reusable EmptyBorder without gaps.
      • DLU2

        public static final Paddings.Padding DLU2
        Deprecated.
        A prepared and reusable Border with 2dlu on all sides.
      • DLU4

        public static final Paddings.Padding DLU4
        Deprecated.
        A prepared and reusable Border with 4dlu on all sides.
      • DLU7

        public static final Paddings.Padding DLU7
        Deprecated.
        A prepared and reusable Border with 7dlu on all sides.
      • DLU9

        public static final Paddings.Padding DLU9
        Deprecated.
        A prepared and reusable Border with 9dlu on all sides.
        Since:
        1.6
      • DLU14

        public static final Paddings.Padding DLU14
        Deprecated.
        A prepared Border with 14dlu on all sides.
      • DLU21

        public static final Paddings.Padding DLU21
        Deprecated.
        A prepared Border with 21dlu on all sides.
        Since:
        1.2
      • BUTTON_BAR_PAD

        public static final Paddings.Padding BUTTON_BAR_PAD
        Deprecated.
        A standardized Border that describes the gap between a component and a button bar in its bottom.
      • DIALOG

        public static final Paddings.Padding DIALOG
        Deprecated.
        A standardized Border that describes the border around a dialog content that has no tabs.
        See Also:
        TABBED_DIALOG
      • TABBED_DIALOG

        public static final Paddings.Padding TABBED_DIALOG
        Deprecated.
        A standardized Border that describes the border around a dialog content that uses tabs.
        See Also:
        DIALOG
    • Constructor Detail

      • Borders

        private Borders()
        Deprecated.