Class SampleData
java.lang.Object
com.inductiveautomation.ignition.common.util.AbstractChangeable
com.inductiveautomation.reporting.designer.workspace.design.SampleData
- All Implemented Interfaces:
- Changeable
This class holds the logic need to determine if sample data needs to be loaded or re-loaded based upon changes
 to the data configuration. It is shared by the design and preview panels, so that sample data is loaded as
 infrequently as possible.
 
It is used by calling update() when a panel is displayed, and then responding to the state of the sample data by listening for changes.
Created by carl.gould on 3/31/2015.
- 
Field SummaryFields inherited from class com.inductiveautomation.ignition.common.util.AbstractChangeablechangeEvent, listenerList
- 
Constructor SummaryConstructorsConstructorDescriptionSampleData(ReportingResourceWorkspace workspace, ResourcePath resourceId, ReportResource report) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidUsed by the ReportingResourceEditor to force updating when the report path changes.Returns a list of any errors incurred during the collection of Data for a report.booleanvoidupdate()Checks to see whether or not the sample data which was previously loaded (if any) is up-to-date.Methods inherited from class com.inductiveautomation.ignition.common.util.AbstractChangeableaddChangeListener, fireStateChanged, getChangeListeners, removeChangeListener
- 
Constructor Details- 
SampleDatapublic SampleData(ReportingResourceWorkspace workspace, ResourcePath resourceId, ReportResource report) 
 
- 
- 
Method Details- 
getErrorsReturns a list of any errors incurred during the collection of Data for a report. Returns an empty List if no errors are found.- Returns:
- list containing errors, empty List (non-null) if errorless.
 
- 
isLoadingpublic boolean isLoading()
- 
getLoadedSampleData
- 
updatepublic void update()Checks to see whether or not the sample data which was previously loaded (if any) is up-to-date. Eventually will fire a state change - either immediately if the already loaded data is still good, or later if the data needs to be fetched.
- 
forceUpdatepublic void forceUpdate()Used by the ReportingResourceEditor to force updating when the report path changes.
 
-