
com.publicobject.issuesbrowser.IssueStatusComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists Show documentation
Show all versions of glazedlists Show documentation
Event-driven lists for dynamically filtered and sorted tables
The newest version!
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package com.publicobject.issuesbrowser;
import java.util.Comparator;
/**
* Compare {@link Issue} objects by status.
*/
public class IssueStatusComparator implements Comparator {
@Override
public int compare(Issue o1, Issue o2) {
return o1.getStatus().compareTo(o2.getStatus());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy