Changeset 1492 for trunk/src/java/org/jcoderz/commons/Loggable.java
- Timestamp:
- 06/06/09 13:36:19 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/java/org/jcoderz/commons/Loggable.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/Loggable.java
r1299 r1492 170 170 171 171 /** 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 /** 172 180 * The toString method of <code>Loggable</code> must dump out all 173 181 * information stored within this loggable in a readable way. This … … 176 184 * <code>Loggable</code>. 177 185 */ 178 String to String ();186 String toDetailedString (); 179 187 180 188 /**
