Package | Description |
---|---|
javax.faces.component |
Fundamental APIs for user
interface components.
|
javax.faces.model |
Standard model data beans for
JavaServer Faces.
|
Modifier and Type | Field and Description |
---|---|
private DataModel |
UIData.model
The
DataModel associated with this component, lazily
instantiated if requested. |
Modifier and Type | Method and Description |
---|---|
protected DataModel |
UIData.getDataModel()
Return the internal
DataModel object representing the data
objects that we will iterate over in this component's rendering. |
Modifier and Type | Method and Description |
---|---|
protected void |
UIData.setDataModel(DataModel dataModel)
Set the internal DataModel.
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayDataModel<E>
ArrayDataModel is a convenience implementation of
DataModel that wraps an array of Java objects. |
class |
ListDataModel<E>
ListDataModel is a convenience implementation of
DataModel that wraps an List of Java objects. |
class |
ResultDataModel
ResultDataModel is a convenience implementation of
DataModel that wraps a JSTL Result object, typically
representing the results of executing an SQL query via JSTL tags. |
class |
ResultSetDataModel
ResultSetDataModel is a convenience implementation of
DataModel that wraps a ResultSet of Java objects. |
class |
ScalarDataModel<E>
ScalarDataModel is a convenience implementation of
DataModel that wraps an individual Java object. |
Modifier and Type | Field and Description |
---|---|
private DataModel<T> |
DataModel.DataModelIterator.model |
Modifier and Type | Method and Description |
---|---|
DataModel |
DataModelEvent.getDataModel()
Return the
DataModel that fired this event. |
Constructor and Description |
---|
DataModelEvent(DataModel model,
int index,
java.lang.Object data)
Construct an event object that is associated with the specified
row index and associated data.
|
DataModelIterator(DataModel<T> model) |