Package org.apache.jmeter.visualizers
Class SearchTextExtension
- java.lang.Object
-
- org.apache.jmeter.visualizers.SearchTextExtension
-
- All Implemented Interfaces:
ActionListener,EventListener,DocumentListener
public class SearchTextExtension extends Object implements ActionListener, DocumentListener
-
-
Constructor Summary
Constructors Constructor Description SearchTextExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidactionPerformed(ActionEvent e)Display the response as text or as rendered HTML.voidchangedUpdate(DocumentEvent e)voidinit(JPanel resultsPane)voidinsertUpdate(DocumentEvent e)voidremoveUpdate(DocumentEvent e)voidsetResults(JEditorPane results)
-
-
-
Method Detail
-
init
public void init(JPanel resultsPane)
-
setResults
public void setResults(JEditorPane results)
-
actionPerformed
public void actionPerformed(ActionEvent e)
Display the response as text or as rendered HTML. Change the text on the button appropriate to the current display.- Specified by:
actionPerformedin interfaceActionListener- Parameters:
e- the ActionEvent being processed
-
changedUpdate
public void changedUpdate(DocumentEvent e)
- Specified by:
changedUpdatein interfaceDocumentListener
-
insertUpdate
public void insertUpdate(DocumentEvent e)
- Specified by:
insertUpdatein interfaceDocumentListener
-
removeUpdate
public void removeUpdate(DocumentEvent e)
- Specified by:
removeUpdatein interfaceDocumentListener
-
-