Package adams.data.spc
Interface ControlChartWithSampleSize
-
- All Superinterfaces:
ControlChart,Destroyable,OptionHandler,TechnicalInformationHandler
- All Known Implementing Classes:
AbstractControlChartWithSampleSize,CChart,NPChart,PChart,XBarRChart,XBarSChart
public interface ControlChartWithSampleSize extends ControlChart
Interface for all control charts with sample sizes.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetSampleSize()Returns the sample size.StringsampleSizeTipText()Returns the tip text for this property.voidsetSampleSize(int value)Sets the sample size.-
Methods inherited from interface adams.data.spc.ControlChart
getName
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.TechnicalInformationHandler
getTechnicalInformation
-
-
-
-
Method Detail
-
setSampleSize
void setSampleSize(int value)
Sets the sample size.- Parameters:
value- the sample size
-
getSampleSize
int getSampleSize()
Returns the sample size.- Returns:
- the sample size
-
sampleSizeTipText
String sampleSizeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-