Show
Ignore:
Timestamp:
06/06/09 13:36:19 (3 years ago)
Author:
amandel
Message:

Add new way to get Loggable dump with nested parameters.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/Loggable.java

    r1299 r1492  
    170170 
    171171   /** 
     172    * The toString method of <code>Loggable</code> dumps the 
     173    * String representation of the class name of the loggable 
     174    * and the contained message. 
     175    * @return one line information about this <code>Loggable</code>. 
     176    */ 
     177   String toString (); 
     178 
     179   /** 
    172180    * The toString method of <code>Loggable</code> must dump out all 
    173181    * information stored within this loggable in a readable way. This 
     
    176184    *       <code>Loggable</code>. 
    177185    */ 
    178    String toString (); 
     186   String toDetailedString (); 
    179187 
    180188   /**