Description of the Method @param o Description of the Parameter @return Description of the Return Value
(final Object o)
| 2716 | * @return Description of the Return Value |
| 2717 | */ |
| 2718 | @Override |
| 2719 | public int compareTo(final Object o) |
| 2720 | { |
| 2721 | final Equipment e = (Equipment) o; |
| 2722 | |
| 2723 | return getName().compareToIgnoreCase(e.getName()); |
| 2724 | } |
| 2725 | |
| 2726 | @Override |
| 2727 | public boolean equals(Object obj) |
no test coverage detected