Interface MapEditor.View
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<MapEditor>,com.google.gwt.user.client.ui.IsWidget,org.uberfire.client.mvp.UberView<MapEditor>
- All Known Implementing Classes:
MapEditorView
- Enclosing class:
- MapEditor
public static interface MapEditor.View extends org.uberfire.client.mvp.UberView<MapEditor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MapEditor.ViewaddButtonColumn(int columnIndex, String header, int width)MapEditor.ViewaddTextColumn(int columnIndex, String header, boolean isSortable, int width)MapEditor.ViewclearError()MapEditor.ViewremoveColumn(int index)MapEditor.ViewsetAddText(String text)MapEditor.ViewsetData(List<Map.Entry<String,String>> data)MapEditor.ViewsetEmptyText(String text)MapEditor.ViewsetRowCount(int count)MapEditor.ViewshowError(com.google.gwt.safehtml.shared.SafeHtml message)
-
-
-
Method Detail
-
setEmptyText
MapEditor.View setEmptyText(String text)
-
setAddText
MapEditor.View setAddText(String text)
-
addTextColumn
MapEditor.View addTextColumn(int columnIndex, String header, boolean isSortable, int width)
-
addButtonColumn
MapEditor.View addButtonColumn(int columnIndex, String header, int width)
-
removeColumn
MapEditor.View removeColumn(int index)
-
setRowCount
MapEditor.View setRowCount(int count)
-
setData
MapEditor.View setData(List<Map.Entry<String,String>> data)
-
showError
MapEditor.View showError(com.google.gwt.safehtml.shared.SafeHtml message)
-
clearError
MapEditor.View clearError()
-
-