override the default toString(), it will return the String from Folder.getFullName() or if that is null, it will use the default toString() behavior.
()
| 1651 | */ |
| 1652 | |
| 1653 | @Override |
| 1654 | public String toString() { |
| 1655 | String s = getFullName(); |
| 1656 | if (s != null) |
| 1657 | return s; |
| 1658 | else |
| 1659 | return super.toString(); |
| 1660 | } |
| 1661 | } |