public interface LayoutGroup
FormEnvironment.getFormComponentTree()
.Modifier and Type | Method and Description |
---|---|
java.util.List<?> |
getChildren()
Get the children of this layout group.
|
GroupType |
getGroupType()
Returns the type of the layout group
|
java.lang.String |
getId()
Get the ID that the framework associates with this layout group.
|
boolean |
isVisible()
Returns whether the layout group is visible or not.
|
void |
setEnabled(boolean enabled)
Sets whether contained form components are enabled or not.
|
void |
setVisible(boolean visible)
Sets whether the layout group is visible or not.
|
GroupType getGroupType()
void setEnabled(boolean enabled)
FormComponent.setEnabled(boolean)
for more information.
All descendant form components are affected.enabled
- whether to enable the descendant form components or notvoid setVisible(boolean visible)
There is no corresponding isVisible
method, because the state of the contained
form components may be mixed.
visible
- whether this layout group should be visible or notFormComponent.setVisible(boolean)
,
isVisible()
boolean isVisible()
true
or false
.setVisible(boolean)
java.lang.String getId()
FormEnvironment.getLayoutGroupById(String)
.java.util.List<?> getChildren()
FormEnvironment.getFormComponentTree()
.