Class Hierarchy All Classes All Fields and Methods

 

Class javax.faces.component.UIColumn

java.lang.Object
        javax.faces.component.UIComponent
                javax.faces.component.UIComponentBase
                        javax.faces.component.UIColumn

public class UIColumn
extends UIComponentBase

UIColumn is a UIComponent that represents a single column of data within a parent UIData component.

Field Index
Field Description
COMPONENT_FAMILY The standard component family for this component.
COMPONENT_TYPE The standard component type for this component.

Constructor Index
Constructor Description
UIColumn() Create a new UIColumn instance with default property values.

Method Index
Method Description
String getFamily()  
UIComponent getFooter() Return the footer facet of the column (if any).
UIComponent getHeader() Return the header facet of the column (if any).
void setFooter(UIComponent) Set the footer facet of the column.
void setHeader(UIComponent) Set the header facet of the column.

 

Fields

 

COMPONENT_FAMILY

public static final java.lang.String COMPONENT_FAMILY

The standard component family for this component.

 

COMPONENT_TYPE

public static final java.lang.String COMPONENT_TYPE

The standard component type for this component.

 

Constructors

 

UIColumn

public UIColumn() 

Create a new UIColumn instance with default property values.

 

Methods

 

getFamily

public String getFamily() 

 

getFooter

public UIComponent getFooter() 

Return the footer facet of the column (if any). A convenience method for getFacet("footer").

 

getHeader

public UIComponent getHeader() 

Return the header facet of the column (if any). A convenience method for getFacet("header").

 

setFooter

public void setFooter(UIComponent footer) 

Set the footer facet of the column. A convenience method for getFacets().put("footer", footer).

 

setHeader

public void setHeader(UIComponent header) 

Set the header facet of the column. A convenience method for getFacets().put("header", header).

Class Hierarchy All Classes All Fields and Methods