com.cometway.util
Class DevNullReporter

java.lang.Object
  extended by com.cometway.util.DevNullReporter
All Implemented Interfaces:
ReporterInterface

public class DevNullReporter
extends java.lang.Object
implements ReporterInterface

This implementation of ReporterInterface does absolutely positively nothing.


Constructor Summary
DevNullReporter()
           
 
Method Summary
 void debug(java.lang.Object objectRef, java.lang.String message)
          Does nothing.
 void error(java.lang.Object objectRef, java.lang.String message)
          Does nothing.
 void error(java.lang.Object objectRef, java.lang.String message, java.lang.Exception e)
          Does nothing.
 void println(java.lang.Object objectRef, java.lang.String message)
          Does nothing.
 void warning(java.lang.Object objectRef, java.lang.String message)
          Does nothing.
 void warning(java.lang.Object objectRef, java.lang.String message, java.lang.Exception e)
          Does nothing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DevNullReporter

public DevNullReporter()
Method Detail

debug

public void debug(java.lang.Object objectRef,
                  java.lang.String message)
Does nothing.

Specified by:
debug in interface ReporterInterface

error

public void error(java.lang.Object objectRef,
                  java.lang.String message)
Does nothing.

Specified by:
error in interface ReporterInterface

error

public void error(java.lang.Object objectRef,
                  java.lang.String message,
                  java.lang.Exception e)
Does nothing.

Specified by:
error in interface ReporterInterface

println

public void println(java.lang.Object objectRef,
                    java.lang.String message)
Does nothing.

Specified by:
println in interface ReporterInterface

warning

public void warning(java.lang.Object objectRef,
                    java.lang.String message)
Does nothing.

Specified by:
warning in interface ReporterInterface

warning

public void warning(java.lang.Object objectRef,
                    java.lang.String message,
                    java.lang.Exception e)
Does nothing.

Specified by:
warning in interface ReporterInterface