Class Paddings

java.lang.Object
com.jgoodies.forms.factories.Paddings

public final class Paddings extends Object
Provides constants and factory methods for paddings that use instances of ConstantSize to define the margins. Paddings are frequently used to add white space around forms, panels, and more generally visual designs.

Examples:

 Paddings.DLU2
 Paddings.createPadding(Sizes.DLUY4, Sizes.DLUX2, Sizes.DLUY4, Sizes.DLUX2);
 Paddings.createPadding("4dlu, 2dlu, 4dlu, 2dlu");
 
Since:
1.9
Version:
$Revision: 1.14 $
See Also:
  • Field Details

    • EMPTY

      public static final EmptyBorder EMPTY
      A prepared and reusable EmptyBorder without gaps.
    • DLU2

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

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

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

      public static final Paddings.Padding DLU9
      A prepared and reusable padding with 9dlu on all sides.
    • DLU14

      public static final Paddings.Padding DLU14
      A prepared and reusable padding with 14dlu on all sides.
    • DLU21

      public static final Paddings.Padding DLU21
      A prepared padding with 21dlu on all sides.
    • BUTTON_BAR_PAD

      public static final Paddings.Padding BUTTON_BAR_PAD
      A standardized reusable padding intended for the gap between a component and a button bar in its bottom.
    • DIALOG

      public static final Paddings.Padding DIALOG
      A standardized reusable padding for dialogs without tabs.
      See Also:
    • TABBED_DIALOG

      public static final Paddings.Padding TABBED_DIALOG
      A standardized reusable padding for dialogs that have tabs.
      See Also:
  • Constructor Details

    • Paddings

      private Paddings()
  • Method Details