Package com.inet.report.chart.dataset
Class GanttForEachRecordDataset
java.lang.Object
com.inet.report.chart.dataset.AbstractDataset
com.inet.report.chart.dataset.GanttForEachRecordDataset
- All Implemented Interfaces:
BaseDataset
,GanttDataset
,Serializable
- Direct Known Subclasses:
GanttOneGroupDataset
public class GanttForEachRecordDataset
extends com.inet.report.chart.dataset.AbstractDataset
implements GanttDataset
This is a dataset used by Gantt charts.
This evaluates data 'for each record' for three data fields (start, end and progress).
- Since:
- 8.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final int
The count of data fields by this kind of dataset.Fields inherited from interface com.inet.report.chart.dataset.BaseDataset
TOKEN_DATASET
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected Group
Returns the category group.getChart()
Returns the parent chart of this dataset.protected SummaryField
getDataField
(int index) Returns the summary field at the specified position in the list.getDataField
(String name) Returns the summary field with the specified name ornull
if the summary field with this name not found in the list.Returns the data fields of this dataset as list.Returns the data field which indicates the end position of each interval bar.com.inet.report.chart.dataset.LabelProvider
Returns the LabelProvider responsible for providing the title, footnote, and axis labelsprotected String
getName()
Returns the data field which indicates the progress status of each interval bar.Returns the data field which indicates the start position of each interval bar.void
setEndField
(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the end position of each interval bar.void
setProgressField
(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the progress status of each interval bar.void
setStartField
(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the start position of each interval bar.void
FOR INTERNAL USE ONLY.verify
(ChartStyle style) Verifies the group and sum properties of current dataset.Methods inherited from class com.inet.report.chart.dataset.AbstractDataset
getReferencedObject, saveGroups, saveProperties, saveSummaryFields
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.inet.report.chart.dataset.BaseDataset
getReferencedObject
-
Field Details
-
FIELDS_COUNT
protected static final int FIELDS_COUNTThe count of data fields by this kind of dataset.- See Also:
-
-
Constructor Details
-
GanttForEachRecordDataset
Creates a new empty dataset.- Parameters:
chart
- the chart (null
not permitted)- Since:
- 8.0
-
-
Method Details
-
getChart
Returns the parent chart of this dataset.- Specified by:
getChart
in interfaceBaseDataset
- Returns:
- the chart.
-
getCategoryGroup
Returns the category group. The category group is the first group of chart.- Returns:
- the group.
- Since:
- 8.0
-
getDataField
Returns the summary field with the specified name ornull
if the summary field with this name not found in the list. Testing for equality using the case sensitiveequals
method.- Specified by:
getDataField
in interfaceBaseDataset
- Parameters:
name
- the searched name of summary field (null
not permitted)- Returns:
- the summary field with the specified name or
null
. - See Also:
-
getDataFields
Returns the data fields of this dataset as list.- Specified by:
getDataFields
in interfaceBaseDataset
- Returns:
- the list of data fields
- See Also:
-
getStartField
Returns the data field which indicates the start position of each interval bar.- Specified by:
getStartField
in interfaceGanttDataset
- Returns:
- the data field of type
SummaryField
ornull
if this field was not initialized. - See Also:
-
setStartField
Sets the data field which indicates the start position of each interval bar. Creates a newSummaryField
with these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField
.
Note: this data field supports only summary operations with date result values.- Specified by:
setStartField
in interfaceGanttDataset
- Parameters:
summaryOperation
- the summary operation. This supports operations with date result values onlyfield
- the data fieldfield2nd
- the second data field, this field can currently be ignored.nth
- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST
- See Also:
-
getEndField
Returns the data field which indicates the end position of each interval bar.- Specified by:
getEndField
in interfaceGanttDataset
- Returns:
- the data field of type
SummaryField
ornull
if this field was not initialized. - See Also:
-
setEndField
Sets the data field which indicates the end position of each interval bar. Creates a newSummaryField
with these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField
.
Note: this data field supports only summary operations with date result values.- Specified by:
setEndField
in interfaceGanttDataset
- Parameters:
summaryOperation
- the summary operation. This supports operations with date result values onlyfield
- the data fieldfield2nd
- the second data field, this field can currently be ignored.nth
- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST
- See Also:
-
getProgressField
Returns the data field which indicates the progress status of each interval bar.- Specified by:
getProgressField
in interfaceGanttDataset
- Returns:
- the data field of type
SummaryField
ornull
if this field was not initialized. - See Also:
-
setProgressField
Sets the data field which indicates the progress status of each interval bar. This field is optional and supports only summary operations with number as result values. Creates a newSummaryField
with these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField
.
Note: this data field supports only summary operations with number result values.- Specified by:
setProgressField
in interfaceGanttDataset
- Parameters:
summaryOperation
- the summary operation. This supports operations with number result values onlyfield
- the data fieldfield2nd
- the second data field, this field can currently be ignored.nth
- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST
- See Also:
-
getDataField
Returns the summary field at the specified position in the list.- Parameters:
index
- index of summary field to return- Returns:
- the summary field at the specified position in the list.
- Throws:
IndexOutOfBoundsException
- if index is out of range.- Since:
- 8.0
-
verify
Verifies the group and sum properties of current dataset.- Specified by:
verify
in interfaceBaseDataset
- Parameters:
style
- the chart style- Returns:
- the error message or empty string if all properties are correct.
-
getLabelProvider
public com.inet.report.chart.dataset.LabelProvider getLabelProvider()Returns the LabelProvider responsible for providing the title, footnote, and axis labels- Specified by:
getLabelProvider
in interfaceBaseDataset
- Returns:
- the LabelProvider responsible for providing the title, footnote, and axis labels
-
updateReferences
public void updateReferences()FOR INTERNAL USE ONLY. Updates the references of this dataset.- Specified by:
updateReferences
in interfaceBaseDataset
-
getName
-