Package org.apache.jmeter.visualizers
Class SamplerResultTab
- java.lang.Object
-
- org.apache.jmeter.visualizers.SamplerResultTab
-
- All Implemented Interfaces:
ResultRenderer
- Direct Known Subclasses:
RenderAsDocument
,RenderAsHTML
,RenderAsJSON
,RenderAsText
,RenderAsXML
public abstract class SamplerResultTab extends Object implements ResultRenderer
Right side in View Results Tree
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SamplerResultTab.RowResult
For model table
-
Field Summary
Fields Modifier and Type Field Description protected boolean
activateSearchExtension
static Color
CLIENT_ERROR_COLOR
static Color
REDIRECT_COLOR
protected static String
REQUEST_VIEW_COMMAND
protected JEditorPane
results
Contains results; contained in resultsPaneprotected JScrollPane
resultsScrollPane
Response Data paneprotected JTabbedPane
rightSide
request pane contentprotected SearchTextExtension
searchTextExtension
static Color
SERVER_ERROR_COLOR
protected static String
TEXT_COMMAND
-
Constructor Summary
Constructors Constructor Description SamplerResultTab()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearData()
void
init()
void
renderImage(SampleResult sampleResult)
void
setBackgroundColor(Color backGround)
void
setLastSelectedTab(int index)
void
setRightSide(JTabbedPane side)
void
setSamplerResult(Object sample)
void
setupTabPane()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.jmeter.visualizers.ResultRenderer
renderResult, toString
-
-
-
-
Field Detail
-
SERVER_ERROR_COLOR
public static final Color SERVER_ERROR_COLOR
-
CLIENT_ERROR_COLOR
public static final Color CLIENT_ERROR_COLOR
-
REDIRECT_COLOR
public static final Color REDIRECT_COLOR
-
TEXT_COMMAND
protected static final String TEXT_COMMAND
- See Also:
- Constant Field Values
-
REQUEST_VIEW_COMMAND
protected static final String REQUEST_VIEW_COMMAND
- See Also:
- Constant Field Values
-
resultsScrollPane
protected JScrollPane resultsScrollPane
Response Data pane
-
results
protected JEditorPane results
Contains results; contained in resultsPane
-
rightSide
protected JTabbedPane rightSide
request pane content
-
searchTextExtension
protected SearchTextExtension searchTextExtension
-
activateSearchExtension
protected boolean activateSearchExtension
-
-
Method Detail
-
clearData
public void clearData()
- Specified by:
clearData
in interfaceResultRenderer
-
init
public void init()
- Specified by:
init
in interfaceResultRenderer
-
setupTabPane
public void setupTabPane()
- Specified by:
setupTabPane
in interfaceResultRenderer
-
setSamplerResult
public void setSamplerResult(Object sample)
- Specified by:
setSamplerResult
in interfaceResultRenderer
-
setRightSide
public void setRightSide(JTabbedPane side)
- Specified by:
setRightSide
in interfaceResultRenderer
-
setLastSelectedTab
public void setLastSelectedTab(int index)
- Specified by:
setLastSelectedTab
in interfaceResultRenderer
-
renderImage
public void renderImage(SampleResult sampleResult)
- Specified by:
renderImage
in interfaceResultRenderer
-
setBackgroundColor
public void setBackgroundColor(Color backGround)
- Specified by:
setBackgroundColor
in interfaceResultRenderer
-
-