Package org.apache.jmeter.visualizers
Class SplineModel
- java.lang.Object
-
- org.apache.jmeter.visualizers.SplineModel
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_NUMBER_OF_NODESstatic intDEFAULT_REFRESH_PERIODprotected intnumberOfNodesprotected intrefreshPeriodprotected booleanSHOW_INCOMING_SAMPLES
-
Constructor Summary
Constructors Constructor Description SplineModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(SampleResult sampleResult)voidclearData()Clears the current data of the object.longgetAverage()longgetCurrent()Spline3getDataCurve()longgetMaximum()longgetMinimum()StringgetName()longgetNumberOfCollectedSamples()longgetSample(int i)booleanisEditable()voidsetListener(GraphListener vis)voidsetName(String newName)voiduncompile()
-
-
-
Field Detail
-
DEFAULT_NUMBER_OF_NODES
public static final int DEFAULT_NUMBER_OF_NODES
- See Also:
- Constant Field Values
-
DEFAULT_REFRESH_PERIOD
public static final int DEFAULT_REFRESH_PERIOD
- See Also:
- Constant Field Values
-
SHOW_INCOMING_SAMPLES
protected final boolean SHOW_INCOMING_SAMPLES
- See Also:
- Constant Field Values
-
numberOfNodes
protected int numberOfNodes
-
refreshPeriod
protected int refreshPeriod
-
-
Method Detail
-
setListener
public void setListener(GraphListener vis)
-
setName
public void setName(String newName)
-
isEditable
public boolean isEditable()
-
getDataCurve
public Spline3 getDataCurve()
-
getMinimum
public long getMinimum()
-
getMaximum
public long getMaximum()
-
getAverage
public long getAverage()
-
getCurrent
public long getCurrent()
-
getSample
public long getSample(int i)
-
getNumberOfCollectedSamples
public long getNumberOfCollectedSamples()
-
getName
public String getName()
-
uncompile
public void uncompile()
-
clearData
public void clearData()
Description copied from interface:ClearableClears the current data of the object.
-
add
public void add(SampleResult sampleResult)
-
-