1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 10:49:24 +02:00

book-by-title library branch has been implemented

This commit is contained in:
Nikolay Pultsin 2011-01-19 20:35:19 +00:00
parent 3ddd824fe7
commit edc931a04f
5 changed files with 90 additions and 0 deletions

View file

@ -38,6 +38,10 @@ public abstract class LibraryTree extends FBTree {
return new TagTree(this, tag);
}
TitleTree createTitleSubTree(String title) {
return new TitleTree(this, title);
}
AuthorTree createAuthorSubTree(Author author) {
return new AuthorTree(this, author);
}