| com.sun.rave.web.ui.component.PropertySheetSectionBase
All known Subclasses: com.sun.rave.web.ui.component.PropertySheetSection,
PropertySheetSectionBase | abstract public class PropertySheetSectionBase extends javax.faces.component.UIComponentBase (Code) | | HTML Elements and Layout
The PropertySheetSection component was written to be used
within the PropertySheet component. It allows you to group
Property components together in sections within the
PropertySheet component.
When you use this component to create a grouping of Property
components, you may provide a description for the
PropertySheetSection . This is done via the
label attribute. Set this attribute to the desired value,
which, of course, may be a ValueBinding expression or a literal String.
Client Side Javascript Functions
None.
Example:
For an example, please see the documentation for the propertySheet Tag.
Auto-generated component class.
Do NOT modify; all changes
will be lost!
|
Method Summary | |
public String | getFamily() Return the identifier of the component family to which this
component belongs. | public String | getLabel() This attribute allows you to provide a label or title for the section
this PropertySheetSection defines for thePropertySheet component. | public String | getStyle() | public String | getStyleClass() | public boolean | isVisible() Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. | public void | restoreState(FacesContext _context, Object _state) | public Object | saveState(FacesContext _context) | public void | setLabel(String label) This attribute allows you to provide a label or title for the section
this PropertySheetSection defines for thePropertySheet component. | public void | setStyle(String style) | public void | setStyleClass(String styleClass) | public void | setVisible(boolean visible) Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. |
PropertySheetSectionBase | public PropertySheetSectionBase()(Code) | | Construct a new PropertySheetSectionBase .
|
getFamily | public String getFamily()(Code) | | Return the identifier of the component family to which this
component belongs. This identifier, in conjunction with the value
of the rendererType property, may be used to select
the appropriate
Renderer for this component instance.
|
getLabel | public String getLabel()(Code) | | This attribute allows you to provide a label or title for the section
this PropertySheetSection defines for thePropertySheet component. The value may be a literal
String, or it may be a ValueBinding expression (useful for
localization).
|
getStyle | public String getStyle()(Code) | | CSS style(s) to be applied when this component is rendered.
|
getStyleClass | public String getStyleClass()(Code) | | CSS style class(es) to be applied when this component is rendered.
|
isVisible | public boolean isVisible()(Code) | | Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. If set to false, the
HTML code for the component is present in the page, but the component
is hidden with style attributes. By default, visible is set to true, so
HTML for the component HTML is included and visible to the user. If the
component is not visible, it can still be processed on subsequent form
submissions because the HTML is present.
|
restoreState | public void restoreState(FacesContext _context, Object _state)(Code) | | Restore the state of this component.
|
saveState | public Object saveState(FacesContext _context)(Code) | | Save the state of this component.
|
setLabel | public void setLabel(String label)(Code) | | This attribute allows you to provide a label or title for the section
this PropertySheetSection defines for thePropertySheet component. The value may be a literal
String, or it may be a ValueBinding expression (useful for
localization).
See Also: PropertySheetSectionBase.getLabel() |
setVisible | public void setVisible(boolean visible)(Code) | | Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. If set to false, the
HTML code for the component is present in the page, but the component
is hidden with style attributes. By default, visible is set to true, so
HTML for the component HTML is included and visible to the user. If the
component is not visible, it can still be processed on subsequent form
submissions because the HTML is present.
See Also: PropertySheetSectionBase.isVisible() |
|
|