Package org.primefaces.model
Interface DashboardColumn
-
- All Known Implementing Classes:
DefaultDashboardColumn
public interface DashboardColumn
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddWidget(int index, String widgetId)voidaddWidget(String widgetId)StringgetStyle()StringgetStyleClass()StringgetWidget(int index)intgetWidgetCount()List<String>getWidgets()voidremoveWidget(String widgetId)voidreorderWidget(int index, String widgetId)
-
-
-
Method Detail
-
removeWidget
void removeWidget(String widgetId)
-
getWidgetCount
int getWidgetCount()
-
getWidget
String getWidget(int index)
-
addWidget
void addWidget(String widgetId)
-
addWidget
void addWidget(int index, String widgetId)
-
reorderWidget
void reorderWidget(int index, String widgetId)
-
getStyle
String getStyle()
-
getStyleClass
String getStyleClass()
-
-