Package jakarta.faces.component
Class UIColumn
java.lang.Object
jakarta.faces.component.UIComponent
jakarta.faces.component.UIComponentBase
jakarta.faces.component.UIColumn
- All Implemented Interfaces:
PartialStateHolder,StateHolder,TransientStateHolder,ComponentSystemEventListener,FacesListener,SystemEventListenerHolder,EventListener
- Direct Known Subclasses:
HtmlColumn
public class UIColumn extends UIComponentBase
UIColumn is a UIComponent that represents a single column of data within a parent
UIData component.
-
Field Summary
Fields Modifier and Type Field Description static StringCOMPONENT_FAMILYThe standard component family for this component.static StringCOMPONENT_TYPEThe standard component type for this component.Fields inherited from class jakarta.faces.component.UIComponent
ATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, CURRENT_COMPONENT, CURRENT_COMPOSITE_COMPONENT, FACETS_KEY, HONOR_CURRENT_COMPONENT_ATTRIBUTES_PARAM_NAME, VIEW_LOCATION_KEY -
Constructor Summary
-
Method Summary
Modifier and Type Method Description StringgetFamily()Get the component family.UIComponentgetFooter()Return the footer facet of the column (if any).UIComponentgetHeader()Return the header facet of the column (if any).voidsetFooter(UIComponent footer)Set the footer facet of the column.voidsetHeader(UIComponent header)Set the header facet of the column.Methods inherited from class jakarta.faces.component.UIComponentBase
addClientBehavior, addFacesListener, broadcast, clearInitialState, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getDefaultEventName, getEventNames, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, getValueBinding, invokeOnComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, restoreState, saveAttachedState, saveState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding, subscribeToEvent, unsubscribeFromEventMethods inherited from class jakarta.faces.component.UIComponent
encodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, setValueExpression, visitTree
-
Field Details
-
COMPONENT_TYPE
The standard component type for this component.
- See Also:
- Constant Field Values
-
COMPONENT_FAMILY
The standard component family for this component.
- See Also:
- Constant Field Values
-
-
Constructor Details
-
Method Details
-
getFamily
Get the component family.- Specified by:
getFamilyin classUIComponent- Returns:
- the component family.
-
getFooter
Return the footer facet of the column (if any). A convenience method for
getFacet("footer").- Returns:
- the footer component.
-
setFooter
Set the footer facet of the column. A convenience method for
getFacets().put("footer", footer).- Parameters:
footer- the new footer facet- Throws:
NullPointerException- iffooterisnull
-
getHeader
Return the header facet of the column (if any). A convenience method for
getFacet("header").- Returns:
- the header component.
-
setHeader
Set the header facet of the column. A convenience method for
getFacets().put("header", header).- Parameters:
header- the new header facet- Throws:
NullPointerException- ifheaderisnull
-