1
0
Fork 0
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:
Nikolay Pultsin 2011-07-14 10:14:35 +01:00
parent 5efc822c2c
commit 1eeae58475
6 changed files with 20 additions and 13 deletions

View file

@ -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);
}