Interface DebugTab

All Known Implementing Classes:
DebugTabBody, DebugTabRequest, DebugTabResponse, DebugTabRuntime, DebugTabServer, DebugTabStacktrace, DebugTabUri

public interface DebugTab
Debug information.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Appends the content of this debug information part to the given writer.
    void
    appendJson(com.fasterxml.jackson.core.JsonGenerator jsonGenerator)
    Appends the content of this debug information part to the given JSON stream writer.
    Gets the name of this debug information part, useful as title.
  • Method Details

    • getName

      String getName()
      Gets the name of this debug information part, useful as title.
      Returns:
      the name
    • appendJson

      void appendJson(com.fasterxml.jackson.core.JsonGenerator jsonGenerator) throws IOException
      Appends the content of this debug information part to the given JSON stream writer.
      Parameters:
      jsonGenerator - a JSON generator
      Throws:
      IOException
    • appendHtml

      void appendHtml(Writer writer) throws IOException
      Appends the content of this debug information part to the given writer.
      Parameters:
      writer - a Writer
      Throws:
      IOException