public abstract class AbstractBaseCell extends Object
| Modifier and Type | Field and Description | 
|---|---|
boolean | 
right  | 
boolean | 
sameAsPrev  | 
| Constructor and Description | 
|---|
AbstractBaseCell()
Blank Constructor for serialization dont use. 
 | 
AbstractBaseCell(boolean right,
                boolean sameAsPrev)
BaseCell Constructor, every cell type should inherit basecell. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getFormattedValue()
Gets the formatted value. 
 | 
String | 
getParentDimension()  | 
String | 
getRawValue()
Gets the raw value. 
 | 
void | 
setFormattedValue(String formattedValue)
Sets the formatted value. 
 | 
void | 
setParentDimension(String pdim)  | 
void | 
setRawValue(String rawValue)
Sets the raw value. 
 | 
void | 
setRight(boolean set)  | 
void | 
setSameAsPrev(boolean same)
Set true if value is same as the previous one in the row. 
 | 
String | 
toString()  | 
public AbstractBaseCell()
public AbstractBaseCell(boolean right,
                        boolean sameAsPrev)
right - sameAsPrev - public String getFormattedValue()
public String getRawValue()
public void setFormattedValue(String formattedValue)
formattedValue - the new formatted valuepublic void setRawValue(String rawValue)
rawValue - the new raw valuepublic void setRight(boolean set)
set - public void setSameAsPrev(boolean same)
same - public void setParentDimension(String pdim)
public String getParentDimension()