public interface MultiContainerFrame
I added this interface so that FormEditor could be contained in frames that were not instances of LayoutFrame. LayoutFrame implements this interface.
Modifier and Type | Method and Description |
---|---|
void |
addContainer(java.lang.String name,
java.awt.Container container)
Add a container with the specified name.
|
boolean |
hasContainer(java.lang.String name)
Return true if the frame has a container with the specified name.
|
void |
removeContainer(java.lang.String name)
Remove the container with the specified name.
|
void addContainer(java.lang.String name, java.awt.Container container)
name
- The name of the container.container
- The container.boolean hasContainer(java.lang.String name)
name
- The name of the container.void removeContainer(java.lang.String name)
name
- The name of the container.