Interface RawEditor

  • All Superinterfaces:
    Editor

    public interface RawEditor
    extends Editor
    This interface provides extensions with an instance of Burp Suite's HTTP text editor to use in their own user interface.
    • Method Detail

      • setEditable

        void setEditable​(boolean editable)
        Parameters:
        editable - Boolean flag to toggle if this text editor is editable or not.
      • getContents

        ByteArray getContents()
        Returns:
        The contents of the text editor.
      • setContents

        void setContents​(ByteArray contents)
        This method can be used to set content within the text editor programmatically. The default system charset is used when encoding to a String.
        Parameters:
        contents - The content to set in the text editor.