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

more methods in AbstractLibrary

This commit is contained in:
Nikolay Pultsin 2012-01-27 02:22:25 +00:00
parent 277fe6cbeb
commit 42f6b51fc6
3 changed files with 21 additions and 0 deletions

View file

@ -50,6 +50,20 @@ public class LibraryShadow extends AbstractLibrary {
// TODO: implement
}
public Book getRecentBook() {
// TODO: implement
return null;
}
public Book getPreviousBook() {
// TODO: implement
return null;
}
public void addBookToRecentList(Book book) {
// TODO: implement
}
@Override
public boolean isBookInFavorites(Book book) {
// TODO: implement