mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 10:49:24 +02:00
introduced LibraryTree.getTreeTitle() method
This commit is contained in:
parent
5efc822c2c
commit
1eeae58475
6 changed files with 20 additions and 13 deletions
|
@ -21,8 +21,6 @@ package org.geometerplus.fbreader.library;
|
|||
|
||||
import java.util.*;
|
||||
|
||||
//import org.geometerplus.zlibrary.core.tree.ZLTree;
|
||||
|
||||
import org.geometerplus.fbreader.tree.FBTree;
|
||||
|
||||
public abstract class LibraryTree extends FBTree {
|
||||
|
@ -34,6 +32,10 @@ public abstract class LibraryTree extends FBTree {
|
|||
super(parent);
|
||||
}
|
||||
|
||||
public String getTreeTitle() {
|
||||
return getName();
|
||||
}
|
||||
|
||||
TagTree createTagSubTree(Tag tag) {
|
||||
return new TagTree(this, tag);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue