All Known Implementing Classes:
Trace

@Concealed public interface ITrace
  • Method Details

    • addTrace

      void addTrace(ITrace.Kind kind, String message)
      Add general trace information message
      Parameters:
      kind -
      message -
    • addTraceEndSection

      void addTraceEndSection()
      End tracing section
    • addTraceStartSection

      void addTraceStartSection(ITrace.Kind kind, String message)
      Add information and indent. Message is placed in an internal stack for use during unindent. Usually used at beginning of method, or larger logical block of code.
      Parameters:
      kind -
      message -
    • addTraceEndSection

      void addTraceEndSection(int access)
      End tracing section replacing Kind field with access information
      Parameters:
      access - value of access level
    • addTraceEndSection

      void addTraceEndSection(boolean isAdmin, IUserSecurityCache.AdminType type)
      End tracing section replacing Kind field with flag information
      Parameters:
      isAdmin - value of flag
      type - type of admin flag
    • clear

      void clear()
      clear all messages
    • formatTrace

      String formatTrace()
      Format the trace information in this object into a string, then clear the information
      Returns:
      formatted trace information