improve logging

This commit is contained in:
Sebastian Sdorra
2010-10-16 11:25:42 +02:00
parent ecb96edda8
commit 040f22d1a8
2 changed files with 19 additions and 0 deletions

View File

@@ -33,6 +33,24 @@ public class RepositoryType
this.displayName = displayName;
}
//~--- methods --------------------------------------------------------------
/**
* Method description
*
*
* @return
*/
@Override
public String toString()
{
StringBuilder msg = new StringBuilder(name);
msg.append(" (").append(displayName).append(")");
return msg.toString();
}
//~--- get methods ----------------------------------------------------------
/**