All Downloads are FREE. Search and download functionalities are using the official Maven repository.

application.ui.library.PefBookAdapter Maven / Gradle / Ivy

package application.ui.library;

import org.daisy.braille.utils.pef.PEFBook;

import application.l10n.Messages;

/**
 * Provides an adapter for pef books suitable for display in a list (via {@link #toString()}.
 * @author Joel Håkansson
 */
public class PefBookAdapter {
	private final PEFBook book;
	private final String display;
	
	/**
	 * Creates a new pef book adapter with the supplied book.
	 * @param book the book
	 */
	public PefBookAdapter(PEFBook book) {
		this.book = book;
    	String untitled = Messages.MESSAGE_UNKNOWN_TITLE.localize();
    	String unknown = Messages.MESSAGE_UNKNOWN_AUTHOR.localize();
		Iterable title = book.getTitle(); 
		Iterable authors = book.getAuthors();
		this.display = Messages.MESSAGE_SEARCH_RESULT.localize((title==null||!title.iterator().hasNext()?untitled:title.iterator().next()), (authors==null||!authors.iterator().hasNext()?unknown:authors.iterator().next()));
	}
	
	/**
	 * Gets the pef book in this adapter.
	 * @return returns the book
	 */
	public PEFBook getBook() {
		return book;
	}
	
	@Override
	public String toString() {
		return display;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy