public abstract class DataCell<T> extends Object implements Serializable
| Modifier and Type | Class and Description |
|---|---|
static class |
DataCell.CellType |
| Modifier and Type | Field and Description |
|---|---|
protected String |
str |
protected DataCell.CellType |
type |
| Constructor and Description |
|---|
DataCell(int r,
int c,
int rs,
int cs)
*
Constructor *
*
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(DataCell<?> cell) |
DataCell.CellType |
getCellType() |
abstract T |
getCellValue() |
int |
getColumn() |
int |
getColumnSpan() |
int |
getRow() |
int |
getRowSpan() |
String |
getStr() |
String |
getStyleCss() |
abstract void |
match(DataCell<?> cell) |
abstract void |
setCellValue(T value) |
void |
setColumnSpan(int columnSpan) |
void |
setRowSpan(int rowSpan) |
void |
setStr(String str)
*
Public Methods *
*
|
void |
setStyleCss(String style) |
String |
toString() |
protected DataCell.CellType type
protected String str
public void setStr(String str)
public String getStr()
public abstract void setCellValue(T value)
public abstract T getCellValue()
public DataCell.CellType getCellType()
public int getRow()
public int getColumn()
public int getRowSpan()
public void setRowSpan(int rowSpan)
public int getColumnSpan()
public void setColumnSpan(int columnSpan)
public String getStyleCss()
public void setStyleCss(String style)
public boolean equals(DataCell<?> cell)
cell - public abstract void match(DataCell<?> cell)