package com.tradecloud.domain.item; import java.util.Comparator; /** * Created by IntelliJ IDEA. * User: ds * Date: 2013/05/09 * Time: 3:07 PM * To change this template use File | Settings | File Templates. */ public class ProductDescriptionComparatorNew implements Comparator<Product> { @Override public int compare(Product o1, Product o2) { return o1.getDescription().compareTo(o2.getDescription()); } }