Uses of Class
net.ajaest.data.auxi.OrderedSequenceTree

Packages that use OrderedSequenceTree
net.ajaest.data.auxi   
net.ajaest.data.dict   
 

Uses of OrderedSequenceTree in net.ajaest.data.auxi
 

Fields in net.ajaest.data.auxi declared as OrderedSequenceTree
private  OrderedSequenceTree<S,E> OrderedSequenceTree.parent
           
 

Fields in net.ajaest.data.auxi with type parameters of type OrderedSequenceTree
private  java.util.Map<S,OrderedSequenceTree<S,E>> OrderedSequenceTree.subtrees
           
 

Methods in net.ajaest.data.auxi that return OrderedSequenceTree
 OrderedSequenceTree<S,E> OrderedSequenceTree.getParent()
           
 OrderedSequenceTree<S,E> OrderedSequenceTree.removeSubTree(S sequenceValue)
          Removes the mapping for the specified key from this map if present.
 

Methods in net.ajaest.data.auxi that return types with arguments of type OrderedSequenceTree
 java.util.Map<S,OrderedSequenceTree<S,E>> OrderedSequenceTree.getSubTrees()
          Returns an unmodifiable map that maps subtrees from this tree by his sequence value.
 

Methods in net.ajaest.data.auxi with parameters of type OrderedSequenceTree
 void OrderedSequenceTree.addSubTree(S sequenceValue, OrderedSequenceTree<S,E> subtree)
          Adds a subtree to this tree using either provided sequenceValue or subtree.sequenceValue.
 

Uses of OrderedSequenceTree in net.ajaest.data.dict
 

Fields in net.ajaest.data.dict declared as OrderedSequenceTree
private  OrderedSequenceTree<KanjiStroke,KanjiTag> KanjiDatabaseManager.graphTree
           
 

Methods in net.ajaest.data.dict that return OrderedSequenceTree
 OrderedSequenceTree<KanjiStroke,KanjiTag> KanjiDatabaseManager.getStrokeTree()
          Returns the current kanji database stroke order sequence tree.