public class CTRowColFieldInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ASCENDING
Sort type value of column/row.
|
static int |
DESCENDING
Sort type value of column/row.
|
static int |
NOSORT
Sort type value of column/row.
|
Constructor and Description |
---|
CTRowColFieldInfo(java.lang.String name,
java.lang.String mapping,
int sort,
java.lang.String total)
Constructor.
|
CTRowColFieldInfo(java.lang.String name,
java.lang.String mapping,
int sort,
java.lang.String total,
java.awt.Color fillColor)
Constructor.
|
CTRowColFieldInfo(java.lang.String name,
java.lang.String mapping,
int sort,
java.lang.String total,
java.awt.Color fillColor,
int index)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBlName()
Gets BC/RC name or the BusinessView name of the column/row field.
|
java.awt.Color |
getFillColor()
Gets the background color of the column/row.
|
void |
setBlName(java.lang.String blName)
Sets the BC/RC name or the BusinessView name of the column/row field.
|
void |
setFillColor(java.awt.Color fillColor)
Sets the background color of the column/row.
|
java.lang.String |
toString() |
public static final int ASCENDING
public static final int DESCENDING
public static final int NOSORT
public CTRowColFieldInfo(java.lang.String name, java.lang.String mapping, int sort, java.lang.String total)
name
- The instance name of the row or column field in the crosstab.mapping
- The mapping name of the database field or formula that will be displayed on the columns/rows of the crosstab.sort
- Specifies how to sort the field values. it's must be one of ASCENDING
, DESCENDING
or NOSORT
.total
- Specifies the display names for summaries of the specified field.public CTRowColFieldInfo(java.lang.String name, java.lang.String mapping, int sort, java.lang.String total, java.awt.Color fillColor)
name
- The instance name of the row or column field in the crosstab.mapping
- The the mapping name of the database field or formula that will be displayed on the columns/rows of the crosstab.sort
- Specifies how to sort the field values. it's must be one of ASCENDING
, DESCENDING
or NOSORT
.total
- Specifies the display names for summaries of the specified field.fillColor
- Specifies the background color of the field.public CTRowColFieldInfo(java.lang.String name, java.lang.String mapping, int sort, java.lang.String total, java.awt.Color fillColor, int index)
name
- The instance name of the row or column field in the crosstab.mapping
- The the mapping name of the database field or formula that will be displayed on the columns/rows of the crosstab.sort
- Specifies how to sort the field values. it's must be one of ASCENDING
, DESCENDING
or NOSORT
.total
- Specifies the display names for summaries of the specified field.fillColor
- Specifies the background color of the field.index
- The position of column/row in the crosstab. It is useless in fact since Logi Report arrange the column/rows according to the column/row list in the crosstab.public void setFillColor(java.awt.Color fillColor)
fillColor
- The background color of the column/row.public java.awt.Color getFillColor()
public void setBlName(java.lang.String blName)
blName
- The BC/RC name or the BusinessView name of the column/row field.public java.lang.String getBlName()
public java.lang.String toString()
toString
in class java.lang.Object