Interface SigLogIntf

All Known Implementing Classes:
SigLogAdapter

public interface SigLogIntf
This interface defines the API necessary for a signature verification application to log status messages, errors and debug messages to a common output repository. This interface will be used by the API check tool to log messages to the CTS output framework (namely the output methods defined in the TestUtil class). This interface will be implemented by an adapter class that will adapt the API defined in this interface to the logging API used by CTS test code.
  • Method Details

    • println

      void println(String msg)
    • println

      void println(Object obj)
    • println

      void println(char c)
    • println

      void println()
    • print

      void print(String msg)
    • print

      void print(Object obj)
    • print

      void print(char c)
    • flush

      void flush()
    • close

      void close()