java.lang.Object
javax.swing.plaf.basic.BasicOptionPaneUI.ButtonAreaLayout
- All Implemented Interfaces:
- LayoutManager
- Enclosing class:
- BasicOptionPaneUI
public static class BasicOptionPaneUI.ButtonAreaLayout extends Object implements LayoutManager
ButtonAreaLayout behaves in a similar manner to
 FlowLayout. It lays out all components from left to
 right. If syncAllWidths is true, the widths of each
 component will be set to the largest preferred size width.
 This class should be treated as a "protected" inner class.
 Instantiate it only within subclasses of BasicOptionPaneUI.- 
Field SummaryFields Modifier and Type Field Description protected booleancentersChildrenIf true, children are lumped together in parent.protected intpaddingThe padding value.protected booleansyncAllWidthsThe value represents if the width of children should be synchronized.
- 
Constructor SummaryConstructors Constructor Description ButtonAreaLayout(boolean syncAllWidths, int padding)Constructs a new instance ofButtonAreaLayout.
- 
Method SummaryModifier and Type Method Description booleangetCentersChildren()Returns whether or not center children should be used.intgetPadding()Returns the padding.booleangetSyncAllWidths()Returns if the width of children should be synchronized.voidsetCentersChildren(boolean newValue)Sets whether or not center children should be used.voidsetPadding(int newPadding)Sets the padding value.voidsetSyncAllWidths(boolean newValue)Sets if the width of children should be synchronized.Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface java.awt.LayoutManageraddLayoutComponent, layoutContainer, minimumLayoutSize, preferredLayoutSize, removeLayoutComponent
- 
Field Details- 
syncAllWidthsprotected boolean syncAllWidthsThe value represents if the width of children should be synchronized.
- 
paddingprotected int paddingThe padding value.
- 
centersChildrenprotected boolean centersChildrenIf true, children are lumped together in parent.
 
- 
- 
Constructor Details- 
ButtonAreaLayoutpublic ButtonAreaLayout(boolean syncAllWidths, int padding)Constructs a new instance ofButtonAreaLayout.- Parameters:
- syncAllWidths- if the width of children should be synchronized
- padding- the padding value
 
 
- 
- 
Method Details- 
setSyncAllWidthspublic void setSyncAllWidths(boolean newValue)Sets if the width of children should be synchronized.- Parameters:
- newValue- if the width of children should be synchronized
 
- 
getSyncAllWidthspublic boolean getSyncAllWidths()Returns if the width of children should be synchronized.- Returns:
- if the width of children should be synchronized
 
- 
setPaddingpublic void setPadding(int newPadding)Sets the padding value.- Parameters:
- newPadding- the new padding
 
- 
getPaddingpublic int getPadding()Returns the padding.- Returns:
- the padding
 
- 
setCentersChildrenpublic void setCentersChildren(boolean newValue)Sets whether or not center children should be used.- Parameters:
- newValue- a new value
 
- 
getCentersChildrenpublic boolean getCentersChildren()Returns whether or not center children should be used.- Returns:
- whether or not center children should be used
 
 
-