Uses of Interface
fri.util.database.jpa.tree.TreeDao

Packages that use TreeDao
fri.util.database.jpa.tree   
fri.util.database.jpa.tree.closuretable   
fri.util.database.jpa.tree.nestedsets A "Nested Sets" tree implementation for hierarchical structures in a database table. 
fri.util.database.jpa.tree.uniqueconstraints   
 

Uses of TreeDao in fri.util.database.jpa.tree
 

Classes in fri.util.database.jpa.tree with type parameters of type TreeDao
 class AbstractTreeTest<D extends TreeDao<N>,N extends TreeNode>
          Tests all public methods of TreeDao with following sample tree:
 

Subinterfaces of TreeDao in fri.util.database.jpa.tree
 interface TemporalTreeDao<N extends TreeNode>
          Responsibilities of a temporal DAO extension.
 

Classes in fri.util.database.jpa.tree that implement TreeDao
 class AbstractTreeDao<N extends TreeNode>
          Common functionalities for a TreeDao implementation.
 

Methods in fri.util.database.jpa.tree with parameters of type TreeDao
static void AbstractTreeTest.outputTree(TreeNode root, TreeDao dao)
          Utility method.
 

Uses of TreeDao in fri.util.database.jpa.tree.closuretable
 

Classes in fri.util.database.jpa.tree.closuretable that implement TreeDao
 class ClosureTableTreeDao
          Data-access-object for a hierarchical representation of records (nodes), using two database tables, having no parent reference in children.
 class TemporalClosureTableTreeDao
          DAO extension that allows to historicize entities instead of deleting them.
 

Uses of TreeDao in fri.util.database.jpa.tree.nestedsets
 

Classes in fri.util.database.jpa.tree.nestedsets that implement TreeDao
 class NestedSetsTreeDao
          Data-access-object for a hierarchical representation of records (nodes), using one database table, having no parent reference in children.
 class TemporalNestedSetsTreeDao
          DAO extension that allows to historicize entities instead of deleting them.
 

Uses of TreeDao in fri.util.database.jpa.tree.uniqueconstraints
 

Methods in fri.util.database.jpa.tree.uniqueconstraints that return TreeDao
protected  TreeDao<N> AbstractUniqueTreeConstraintImpl.getDao()
           
 

Methods in fri.util.database.jpa.tree.uniqueconstraints with parameters of type TreeDao
 void UniqueTreeConstraint.setContext(DbSession session, TreeDao<N> dao, java.lang.String nodeEntityName, java.lang.String pathEntityName)
          Called by the DAO to publish context information to this constraint-checker.
 void AbstractUniqueTreeConstraintImpl.setContext(DbSession session, TreeDao<N> dao, java.lang.String nodeEntityName, java.lang.String pathEntityName)