Interface DebugInfo
-
- All Known Implementing Classes:
DebugInfoBody,DebugInfoException,DebugInfoRequest,DebugInfoResponse,DebugInfoRuntime,DebugInfoServer,DebugInfoUri
public interface DebugInfoDebug information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappendHtml(Writer writer)Appends the content of this debug information part to the given writer.voidappendJson(JsonStreamWriter jsonStreamWriter)Appends the content of this debug information part to the given JSON stream writer.StringgetName()Gets the name of this debug information part, useful as title.
-
-
-
Method Detail
-
getName
String getName()
Gets the name of this debug information part, useful as title.- Returns:
- the name
-
appendJson
void appendJson(JsonStreamWriter jsonStreamWriter) throws IOException
Appends the content of this debug information part to the given JSON stream writer.- Parameters:
jsonStreamWriter- a JSON stream writer- Throws:
IOException- Caso ocorra exceção
-
appendHtml
void appendHtml(Writer writer) throws IOException
Appends the content of this debug information part to the given writer.- Parameters:
writer- aWriter- Throws:
IOException- Caso ocorra exceção
-
-