Package adams.data
Interface RegionRecorder<T extends DataContainer>
-
- Type Parameters:
T
- the type of data that is recorded
- All Known Implementing Classes:
AbstractDatabaseConnectionDenoiser
,AbstractDenoiser
,PassThrough
public interface RegionRecorder<T extends DataContainer>
A scheme that also records regions in the data.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getRecordRegions()
Returns whether regions are recorded.List<T>
getRegions()
Returns the regions that were recorded.String
recordRegionsTipText()
Returns the tip text for this property.void
setRecordRegions(boolean value)
Sets whether the regions are recorded as well.
-
-
-
Method Detail
-
setRecordRegions
void setRecordRegions(boolean value)
Sets whether the regions are recorded as well.- Parameters:
value
- if true the regions will be recorded- See Also:
getRegions()
-
getRecordRegions
boolean getRecordRegions()
Returns whether regions are recorded.- Returns:
- true if the regions are recorded
- See Also:
getRegions()
-
recordRegionsTipText
String recordRegionsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-