| 215 | Comparator comparator = new Comparator() |
| 216 | { |
| 217 | public int compare(Object o1, Object o2) |
| 218 | { |
| 219 | CustomItemProperties customitemproperties = (CustomItemProperties)o1; |
| 220 | CustomItemProperties customitemproperties1 = (CustomItemProperties)o2; |
| 221 | return customitemproperties.layer != customitemproperties1.layer ? customitemproperties.layer - customitemproperties1.layer : (customitemproperties.weight != customitemproperties1.weight ? customitemproperties1.weight - customitemproperties.weight : (!customitemproperties.basePath.equals(customitemproperties1.basePath) ? customitemproperties.basePath.compareTo(customitemproperties1.basePath) : customitemproperties.name.compareTo(customitemproperties1.name))); |
| 222 | } |
| 223 | }; |
| 224 | return comparator; |
| 225 | } |