- java.lang.Object
-
- javax.swing.plaf.basic.BasicInternalFrameUI.InternalFrameLayout
-
- All Implemented Interfaces:
-
LayoutManager
- Enclosing class:
- BasicInternalFrameUI
public class BasicInternalFrameUI.InternalFrameLayout extends Object implements LayoutManager
内部框架布局。
-
-
构造方法摘要
构造方法 Constructor 描述 InternalFrameLayout()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
addLayoutComponent(String name, Component c)
如果布局管理器使用每个组件字符串,则将组件comp
添加到布局,将其与name
指定的字符串相关联。void
layoutContainer(Container c)
放出指定的容器。Dimension
minimumLayoutSize(Container c)
计算指定容器的最小尺寸尺寸,给定其包含的组件。Dimension
preferredLayoutSize(Container c)
计算指定容器的首选大小尺寸,给定其包含的组件。void
removeLayoutComponent(Component c)
从布局中删除指定的组件。
-
-
-
方法详细信息
-
addLayoutComponent
public void addLayoutComponent(String name, Component c)
如果布局管理器使用每个组件字符串,则将组件comp
添加到布局,将其与name
指定的字符串相关联。- Specified by:
-
addLayoutComponent
在接口LayoutManager
- 参数
-
name
- 与组件关联的字符串 -
c
- 要添加的组件
-
removeLayoutComponent
public void removeLayoutComponent(Component c)
从布局中删除指定的组件。- Specified by:
-
removeLayoutComponent
在接口LayoutManager
- 参数
-
c
- 要删除的组件
-
preferredLayoutSize
public Dimension preferredLayoutSize(Container c)
计算指定容器的首选大小尺寸,给定其包含的组件。- Specified by:
-
preferredLayoutSize
在接口LayoutManager
- 参数
-
c
- 要布置的容器 - 结果
- 容器的首选尺寸
- 另请参见:
-
LayoutManager.minimumLayoutSize(java.awt.Container)
-
minimumLayoutSize
public Dimension minimumLayoutSize(Container c)
计算指定容器的最小尺寸尺寸,给定其包含的组件。- Specified by:
-
minimumLayoutSize
在接口LayoutManager
- 参数
-
c
- 要布局的组件 - 结果
- 容器的最小尺寸
- 另请参见:
-
LayoutManager.preferredLayoutSize(java.awt.Container)
-
layoutContainer
public void layoutContainer(Container c)
放出指定的容器。- Specified by:
-
layoutContainer
在接口LayoutManager
- 参数
-
c
- 要布置的容器
-
-