Interface StatusReporter

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface StatusReporter
    Implement this interface when you want an object to append its information to the status report.
    Author:
    Charles Rapp
    See Also:
    StatusReport
    • Method Detail

      • reportStatus

        void reportStatus​(PrintWriter report)
        Append your report to this buffer.
        Parameters:
        report - append report to this buffer.