Minor fix: Tree should implement Comparable not AbstractTree
| | |
| | | * This class is a wrapper around the tree object and provides basic |
| | | * read and write methods for entries. |
| | | */ |
| | | abstract class AbstractTree implements Tree, Comparable<Tree> |
| | | abstract class AbstractTree implements Tree |
| | | { |
| | | /** The name of the tree within the entryContainer. */ |
| | | private final TreeName name; |
| | |
| | | * This class is a wrapper around the tree object and provides basic |
| | | * read and write methods for entries. |
| | | */ |
| | | interface Tree |
| | | interface Tree extends Comparable<Tree> |
| | | { |
| | | /** |
| | | * Opens a tree, optionally creating it. If the provided configuration is transactional, |