public class ListGridRecord extends Object
| Modifier and Type | Field and Description |
|---|---|
protected String |
errorKey |
protected Map<String,Field> |
fieldMap
Convenience map keyed by the field name.
|
protected List<Field> |
fields |
protected List<Field> |
hiddenFields |
protected String |
id |
protected Boolean |
isDirty |
protected Boolean |
isError |
protected ListGrid |
listGrid |
| Constructor and Description |
|---|
ListGridRecord() |
| Modifier and Type | Method and Description |
|---|---|
void |
clearFieldMap() |
boolean |
getCanLinkToExternalEntity() |
String |
getErrorKey() |
String |
getExternalEntityPath() |
Field |
getField(String fieldName)
Returns a
Field in this record for a particular field name. |
List<Field> |
getFields()
Normally you should not be looping through these fields.
|
List<Field> |
getHiddenFields() |
String |
getHiddenFieldsJson() |
String |
getId() |
int |
getIndex() |
Boolean |
getIsDirty() |
Boolean |
getIsError() |
ListGrid |
getListGrid() |
String |
getPath() |
void |
setDirty(Boolean isDirty) |
void |
setErrorKey(String errorKey) |
void |
setFields(List<Field> fields) |
void |
setHiddenFields(List<Field> hiddenFields) |
void |
setId(String id) |
void |
setIsError(Boolean isError) |
void |
setListGrid(ListGrid listGrid) |
protected ListGrid listGrid
protected String id
protected Boolean isDirty
protected Boolean isError
protected String errorKey
public String getPath()
public boolean getCanLinkToExternalEntity()
public String getExternalEntityPath()
public ListGrid getListGrid()
public void setListGrid(ListGrid listGrid)
public String getId()
public void setId(String id)
public int getIndex()
public List<Field> getFields()
ListGrid.getHeaderFields() and then invoke the getField(String) method
with that header field name.public Field getField(String fieldName)
Field in this record for a particular field name. Used when displaying a ListGrid in order
to guarantee proper field orderingfieldName - public void clearFieldMap()
public String getHiddenFieldsJson()
public Boolean getIsDirty()
public void setDirty(Boolean isDirty)
public Boolean getIsError()
public void setIsError(Boolean isError)
public String getErrorKey()
public void setErrorKey(String errorKey)
Copyright © 2014. All Rights Reserved.