view src/main/java/de/mpiwg/web/search/SortSectionByBookId.java @ 0:3e62083dbcbf

First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Thu, 23 Apr 2015 15:46:01 +0200
parents
children
line wrap: on
line source

package de.mpiwg.web.search;

import java.util.Comparator;

import de.mpiwg.gazetteer.db.DBSection;

public class SortSectionByBookId implements Comparator<DBSection>{
	
	public int compare(DBSection o1, DBSection o2) {
		if(o1.getBook() == null || o2.getBook() == null){
			return o1.getName().compareTo(o2.getName());	
		}
		return o1.getBook().getId().compareTo(o2.getBook().getId());
	}
}