Interface EditorPane


public interface EditorPane
Represents an editable pane allowing content to be modified in Repeater.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    replace(String search, String replacement)
    Find all instances of the specified text and replace them with the given replacement text.
    void
    set(ByteArray contents)
    Replace the contents of the editor with the specified Burp ByteArray.
    void
    set(Object contents)
    Sets the contents of the editor using an arbitrary object.
    void
    set(String contents)
    Replace the contents of the editor with the specified text.
  • Method Details

    • set

      void set(String contents)
      Replace the contents of the editor with the specified text.
      Parameters:
      contents - The new content as a plain string.
    • set

      void set(ByteArray contents)
      Replace the contents of the editor with the specified Burp ByteArray.
      Parameters:
      contents - The new contents for the pane as a ByteArray.
    • set

      void set(Object contents)
      Sets the contents of the editor using an arbitrary object. The object’s toString() method will be used to obtain the contents.
      Parameters:
      contents - An object whose toString() result will be set as the editor contents.
    • replace

      void replace(String search, String replacement)
      Find all instances of the specified text and replace them with the given replacement text.
      Parameters:
      search - The text to find within the editor.
      replacement - The text to replace each occurrence with.