Package adams.core.io
Interface BatchSizeSupporter
-
- All Known Implementing Classes:
SpreadSheetDbWriter
public interface BatchSizeSupporter
Interface for classes that support batch size.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
batchSizeTipText()
Returns the tip text for this property.int
getBatchSize()
Returns the batch size.void
setBatchSize(int value)
Sets the batch size.
-
-
-
Method Detail
-
setBatchSize
void setBatchSize(int value)
Sets the batch size.- Parameters:
value
- the batch size
-
getBatchSize
int getBatchSize()
Returns the batch size.- Returns:
- the batch size
-
batchSizeTipText
String batchSizeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-