| 25 |
|
//---PUBLIC METHODS--- |
| 26 |
|
|
| 27 |
|
/** |
| 28 |
< |
* Overrides the {@link #java.lang.Object.toString() Object.toString()} |
| 28 |
> |
* Overrides the {@link java.lang.Object#toString() Object.toString()} |
| 29 |
|
* method to provide clean logging (every class should have this). |
| 30 |
|
* |
| 31 |
|
* @return the name of this class and its CVS revision |
| 32 |
|
*/ |
| 33 |
|
public String toString() { |
| 34 |
< |
return this.getClass().getName() + ":" + REVISION; |
| 34 |
> |
return this.getClass().getName() + "(" + REVISION.substring(11, REVISION.length() - 2) + ")"; |
| 35 |
|
} |
| 36 |
|
|
| 37 |
|
//---PRIVATE METHODS--- |