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 UIComponentthat represents a single column of data within a parentUIDatacomponent.
- 
- 
Field SummaryFields 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.UIComponentATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, FACETS_KEY, VIEW_LOCATION_KEY
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods 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.UIComponentBaseaddClientBehavior, 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, invokeOnComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, restoreState, saveAttachedState, saveState, setId, setParent, setRendered, setRendererType, setTransient, subscribeToEvent, unsubscribeFromEvent
 - 
Methods inherited from class jakarta.faces.component.UIComponentencodeAll, 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 Detail- 
COMPONENT_TYPEpublic static final String COMPONENT_TYPE The standard component type for this component. - See Also:
- Constant Field Values
 
 - 
COMPONENT_FAMILYpublic static final String COMPONENT_FAMILY The standard component family for this component. - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
UIColumnpublic UIColumn() Create a new UIColumninstance with default property values.
 
- 
 - 
Method Detail- 
getFamilypublic String getFamily() Get the component family.- Specified by:
- getFamilyin class- UIComponent
- Returns:
- the component family.
 
 - 
getFooterpublic UIComponent getFooter() Return the footer facet of the column (if any). A convenience method for getFacet("footer").- Returns:
- the footer component.
 
 - 
setFooterpublic void setFooter(UIComponent footer) Set the footer facet of the column. A convenience method for getFacets().put("footer", footer).- Parameters:
- footer- the new footer facet
- Throws:
- NullPointerException- if- footeris- null
 
 - 
getHeaderpublic UIComponent getHeader() Return the header facet of the column (if any). A convenience method for getFacet("header").- Returns:
- the header component.
 
 - 
setHeaderpublic void setHeader(UIComponent header) Set the header facet of the column. A convenience method for getFacets().put("header", header).- Parameters:
- header- the new header facet
- Throws:
- NullPointerException- if- headeris- null
 
 
- 
 
-