1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 10:19:33 +02:00

synchronization with library-service branch + constants are moved from Library to LibraryTree

This commit is contained in:
Nikolay Pultsin 2013-02-07 15:01:46 +00:00
parent 5f6a41fb3a
commit a46e23e78e
17 changed files with 100 additions and 94 deletions

View file

@ -28,7 +28,8 @@ public class BookTree extends LibraryTree {
public final Book Book;
private final boolean myShowAuthors;
BookTree(Book book, boolean showAuthors) {
BookTree(IBookCollection collection, Book book, boolean showAuthors) {
super(collection);
Book = book;
myShowAuthors = showAuthors;
}