Home | History | Annotate | Download | only in io

Lines Matching defs:REPORTER

26     private static volatile Reporter REPORTER = new DefaultReporter();
29 * Used to replace default Reporter for logging events. Must be non-null.
31 public static void setReporter(Reporter reporter) {
32 if (reporter == null) {
33 throw new NullPointerException("reporter == null");
35 REPORTER = reporter;
39 * Returns non-null Reporter.
41 public static Reporter getReporter() {
42 return REPORTER;
48 public static interface Reporter {
54 * Default Reporter which reports events to the log.
56 private static final class DefaultReporter implements Reporter {