Package org.jdesktop.swingx.plaf.basic
Class BasicErrorPaneUI.ErrorPaneLayout
- java.lang.Object
-
- org.jdesktop.swingx.plaf.basic.BasicErrorPaneUI.ErrorPaneLayout
-
- All Implemented Interfaces:
java.awt.LayoutManager
- Enclosing class:
- BasicErrorPaneUI
private final class BasicErrorPaneUI.ErrorPaneLayout extends java.lang.Object implements java.awt.LayoutManagerLays out the BasicErrorPaneUI components.
-
-
Field Summary
Fields Modifier and Type Field Description private javax.swing.JEditorPanedummy
-
Constructor Summary
Constructors Modifier Constructor Description privateErrorPaneLayout()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLayoutComponent(java.lang.String name, java.awt.Component comp)voidlayoutContainer(java.awt.Container parent)java.awt.DimensionminimumLayoutSize(java.awt.Container parent)java.awt.DimensionpreferredLayoutSize(java.awt.Container parent)The preferred size is: The width of the parent container The height necessary to show the entire message text (as long as said height does not go off the screen) plus the buttons The preferred height changes depending on whether the details are visible, or not.voidremoveLayoutComponent(java.awt.Component comp)
-
-
-
Method Detail
-
addLayoutComponent
public void addLayoutComponent(java.lang.String name, java.awt.Component comp)- Specified by:
addLayoutComponentin interfacejava.awt.LayoutManager
-
removeLayoutComponent
public void removeLayoutComponent(java.awt.Component comp)
- Specified by:
removeLayoutComponentin interfacejava.awt.LayoutManager
-
preferredLayoutSize
public java.awt.Dimension preferredLayoutSize(java.awt.Container parent)
The preferred size is: The width of the parent container The height necessary to show the entire message text (as long as said height does not go off the screen) plus the buttons The preferred height changes depending on whether the details are visible, or not.- Specified by:
preferredLayoutSizein interfacejava.awt.LayoutManager
-
minimumLayoutSize
public java.awt.Dimension minimumLayoutSize(java.awt.Container parent)
- Specified by:
minimumLayoutSizein interfacejava.awt.LayoutManager
-
layoutContainer
public void layoutContainer(java.awt.Container parent)
- Specified by:
layoutContainerin interfacejava.awt.LayoutManager
-
-