Package net.sf.eBus.util.logging
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreportStatus(PrintWriter report)Append your report to this buffer.
-
-
-
Method Detail
-
reportStatus
void reportStatus(PrintWriter report)
Append your report to this buffer.- Parameters:
report- append report to this buffer.
-
-