Compares two places by their name @param arg0 @return
(final Place arg0)
| 392 | * @return |
| 393 | */ |
| 394 | @Override |
| 395 | public int compareTo(final Place arg0) { |
| 396 | if (arg0 == null) { |
| 397 | throw new NullPointerException(); |
| 398 | } |
| 399 | return getName().compareTo(arg0.getName()); |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * Removes all connections to other places (paths, child-connections) |