Package org.patternfly.component
Class DataList<T>
- java.lang.Object
-
- org.patternfly.component.BaseComponent<HTMLUListElement,DataList<T>>
-
- org.patternfly.component.DataList<T>
-
- All Implemented Interfaces:
Container<HTMLUListElement,DataList<T>>,Finder<HTMLUListElement>,HasElement<HTMLUListElement,DataList<T>>,HasHTMLElement<HTMLUListElement,DataList<T>>,IsElement<HTMLUListElement>,TypedBuilder<HTMLUListElement,DataList<T>>,Component,Display<T>
@Deprecated public class DataList<T> extends BaseComponent<HTMLUListElement,DataList<T>> implements Display<T>
Deprecated.PatternFly data list.The data list does not manage data by itself. Use a
DataProviderand add the data list as a display to the data provider:DataProvider dataProvider = ...; DataList list = ...; dataProvider.addDisplay(list); dataProvider.update(...);
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDataList.Display<T>Deprecated.static classDataList.ExpandableBodyDeprecated.static classDataList.ExpandableContentDeprecated.static classDataList.ItemDeprecated.static classDataList.ItemActionDeprecated.static classDataList.ItemCellDeprecated.static classDataList.ItemContentDeprecated.static classDataList.ItemControlDeprecated.static classDataList.ItemRowDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <T> DataList<T>dataList(DataProvider<T> dataProvider, DataList.Display<T> display)Deprecated.static DataList.ExpandableBodyexpandableBody()Deprecated.static DataList.ExpandableContentexpandableContent()Deprecated.static DataList.Itemitem()Deprecated.static DataList.ItemActionitemAction()Deprecated.static DataList.ItemCellitemCell()Deprecated.static DataList.ItemContentitemContent()Deprecated.static DataList.ItemControlitemControl()Deprecated.static DataList.ItemRowitemRow()Deprecated.voidshowItems(Iterable<T> items, PageInfo pageInfo)Deprecated.DataList<T>that()Deprecated.voidupdateSelection(SelectionInfo<T> selectionInfo)Deprecated.voidupdateSortInfo(SortInfo<T> sortInfo)Deprecated.-
Methods inherited from class org.patternfly.component.BaseComponent
componentType, element
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jboss.elemento.Container
add, add, addAll, addAll, addAll, addAll, addAll
-
Methods inherited from interface org.jboss.elemento.HasElement
add, apply, aria, aria, aria, attr, attr, attr, css, id, id, innerHtml, on, textContent, toggle, toggle, toggle
-
Methods inherited from interface org.jboss.elemento.HasHTMLElement
data, hidden, style, title
-
-
-
-
Method Detail
-
dataList
public static <T> DataList<T> dataList(DataProvider<T> dataProvider, DataList.Display<T> display)
Deprecated.
-
item
public static DataList.Item item()
Deprecated.
-
itemRow
public static DataList.ItemRow itemRow()
Deprecated.
-
itemControl
public static DataList.ItemControl itemControl()
Deprecated.
-
itemContent
public static DataList.ItemContent itemContent()
Deprecated.
-
itemAction
public static DataList.ItemAction itemAction()
Deprecated.
-
itemCell
public static DataList.ItemCell itemCell()
Deprecated.
-
expandableContent
public static DataList.ExpandableContent expandableContent()
Deprecated.
-
expandableBody
public static DataList.ExpandableBody expandableBody()
Deprecated.
-
that
public DataList<T> that()
Deprecated.- Specified by:
thatin interfaceTypedBuilder<HTMLUListElement,DataList<T>>
-
updateSelection
public void updateSelection(SelectionInfo<T> selectionInfo)
Deprecated.- Specified by:
updateSelectionin interfaceDisplay<T>
-
updateSortInfo
public void updateSortInfo(SortInfo<T> sortInfo)
Deprecated.- Specified by:
updateSortInfoin interfaceDisplay<T>
-
-