Package adams.data
Interface CompressionSupporter
-
- All Superinterfaces:
Destroyable
,OptionHandler
public interface CompressionSupporter extends OptionHandler
Interface forAbstractDataContainerWriter
classes that support compression.- 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
getUseCompression()
Returns whether compression is in use.void
setUseCompression(boolean value)
Sets whether to use compression.String
useCompressionTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
setUseCompression
void setUseCompression(boolean value)
Sets whether to use compression.- Parameters:
value
- true if to use compression
-
getUseCompression
boolean getUseCompression()
Returns whether compression is in use.- Returns:
- true if compression is used
-
useCompressionTipText
String useCompressionTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-