Uses of Class
org.variantsync.diffdetective.variation.tree.VariationTreeNode
Packages that use VariationTreeNode
Package
Description
-
Uses of VariationTreeNode in org.variantsync.diffdetective.variation.diff.bad
Fields in org.variantsync.diffdetective.variation.diff.bad with type parameters of type VariationTreeNodeModifier and TypeFieldDescriptionprivate final Map<VariationTreeNode<L>,
DiffType> BadVDiff.coloring
The field for thecoloring
record component.private final Map<VariationTreeNode<L>,
DiffLineNumberRange> BadVDiff.lines
The field for thelines
record component.private final Map<VariationTreeNode<L>,
VariationTreeNode<L>> BadVDiff.matching
The field for thematching
record component.private final Map<VariationTreeNode<L>,
VariationTreeNode<L>> BadVDiff.matching
The field for thematching
record component.BadVDiff.FromGoodNodeTranslation.translate
Methods in org.variantsync.diffdetective.variation.diff.bad that return VariationTreeNodeModifier and TypeMethodDescriptionprivate static <L extends Label>
VariationTreeNode<L>BadVDiff.fromGood
(DiffNode<L> n, BadVDiff.FromGoodNodeTranslation<L> nodeTranslation, Map<VariationTreeNode<L>, DiffType> coloring, Map<VariationTreeNode<L>, DiffLineNumberRange> lines) Performs aplain
conversion of the given DiffNode n to a VariationTreeNode.(package private) VariationTreeNode<L>
Returns the VariationTreeNode that represents the given DiffNode d at the given time t in the produced bad diff.private static <L extends Label>
VariationTreeNode<L>Plain conversion of DiffNodes to VariationTree nodes.Methods in org.variantsync.diffdetective.variation.diff.bad that return types with arguments of type VariationTreeNodeModifier and TypeMethodDescriptionBadVDiff.coloring()
Returns the value of thecoloring
record component.BadVDiff.lines()
Returns the value of thelines
record component.BadVDiff.matching()
Returns the value of thematching
record component.BadVDiff.matching()
Returns the value of thematching
record component.Methods in org.variantsync.diffdetective.variation.diff.bad with parameters of type VariationTreeNodeModifier and TypeMethodDescriptionBadVDiff.mergeToGood
(VariationTreeNode<L> before, VariationTreeNode<L> after) Merges two VariationTreeNodes that represent the same node to a single unchanged DiffNode.private void
BadVDiff.prettyPrint
(String indent, StringBuilder b, VariationTreeNode<L> n) (package private) void
Remember that the given DiffNode d was translated to the given VariationTreeNode v at time t.(package private) void
BadVDiff.FromGoodNodeTranslation.put
(DiffNode<L> d, VariationTreeNode<L> v) Remember that the given DiffNode d was translated to the given VariationTreeNode v at all times d exists.BadVDiff.toGood
(VariationTreeNode<L> n) Method parameters in org.variantsync.diffdetective.variation.diff.bad with type arguments of type VariationTreeNodeModifier and TypeMethodDescriptionprivate static <L extends Label>
VariationTreeNode<L>BadVDiff.fromGood
(DiffNode<L> n, BadVDiff.FromGoodNodeTranslation<L> nodeTranslation, Map<VariationTreeNode<L>, DiffType> coloring, Map<VariationTreeNode<L>, DiffLineNumberRange> lines) Performs aplain
conversion of the given DiffNode n to a VariationTreeNode.Constructor parameters in org.variantsync.diffdetective.variation.diff.bad with type arguments of type VariationTreeNodeModifierConstructorDescriptionBadVDiff
(VariationTree<L> diff, Map<VariationTreeNode<L>, VariationTreeNode<L>> matching, Map<VariationTreeNode<L>, DiffType> coloring, Map<VariationTreeNode<L>, DiffLineNumberRange> lines) Creates an instance of aBadVDiff
record class.BadVDiff
(VariationTree<L> diff, Map<VariationTreeNode<L>, VariationTreeNode<L>> matching, Map<VariationTreeNode<L>, DiffType> coloring, Map<VariationTreeNode<L>, DiffLineNumberRange> lines) Creates an instance of aBadVDiff
record class. -
Uses of VariationTreeNode in org.variantsync.diffdetective.variation.tree
Fields in org.variantsync.diffdetective.variation.tree declared as VariationTreeNodeModifier and TypeFieldDescriptionprivate VariationTreeNode<L>
VariationTreeNode.parent
The parent of this node.private final VariationTreeNode<L>
VariationTree.root
The field for theroot
record component.Fields in org.variantsync.diffdetective.variation.tree with type parameters of type VariationTreeNodeModifier and TypeFieldDescriptionprivate final List<VariationTreeNode<L>>
VariationTreeNode.childOrder
The list for maintaining the order of all children of this node.Methods in org.variantsync.diffdetective.variation.tree that return VariationTreeNodeModifier and TypeMethodDescriptionstatic <L extends Label>
VariationTreeNode<L>VariationTreeNode.createArtifact
(LineRange lineRange, L label) Convenience constructor for creating an artifact node of aVariationTree
.static <L extends Label>
VariationTreeNode<L>VariationTreeNode.createRoot
(L label) Convenience constructor for creating the root of aVariationTree
.VariationTreeNode.deepCopy()
Creates a deep copy of this node.VariationTreeNode.deepCopy
(Map<VariationTreeNode<L>, VariationTreeNode<L>> oldToNew) Creates a deep copy of this node.static <L extends Label>
VariationTreeNode<L>VariationTreeNode.fromID
(int id, L label) Reconstructs a node from the givenid
and label.VariationTreeNode.getParent()
VariationTree.root()
Returns the value of theroot
record component.VariationNode.toVariationTree()
Returns a copy of this variation tree in aconcrete variation tree implementation
.VariationNode.toVariationTree
(Map<? super T, VariationTreeNode<L>> oldToNew) Returns a copy of this variation tree in aconcrete variation tree implementation
.VariationTreeNode.upCast()
Methods in org.variantsync.diffdetective.variation.tree that return types with arguments of type VariationTreeNodeMethods in org.variantsync.diffdetective.variation.tree with parameters of type VariationTreeNodeModifier and TypeMethodDescriptionvoid
VariationTreeNode.addChild
(VariationTreeNode<L> child) boolean
VariationTree.contains
(VariationTreeNode<L> node) Returns true iff this tree contains the given node.void
VariationTreeNode.insertChild
(VariationTreeNode<L> child, int index) void
VariationTreeNode.removeChild
(VariationTreeNode<L> child) private void
VariationTreeNode.setParent
(VariationTreeNode<L> newParent) SetsnewParent
as the new parent of this node.Method parameters in org.variantsync.diffdetective.variation.tree with type arguments of type VariationTreeNodeModifier and TypeMethodDescriptionboolean
VariationTree.anyMatch
(Predicate<VariationTreeNode<L>> condition) Checks whether any node in this tree satisfies the given condition.VariationTree.deepCopy
(Map<VariationTreeNode<L>, VariationTreeNode<L>> oldToNew) Creates a deep copy of this variation tree.VariationTree.deepCopy
(Map<VariationTreeNode<L>, VariationTreeNode<L>> oldToNew) Creates a deep copy of this variation tree.VariationTreeNode.deepCopy
(Map<VariationTreeNode<L>, VariationTreeNode<L>> oldToNew) Creates a deep copy of this node.VariationTreeNode.deepCopy
(Map<VariationTreeNode<L>, VariationTreeNode<L>> oldToNew) Creates a deep copy of this node.VariationTree.forAllPreorder
(Consumer<VariationTreeNode<L>> action) Invokes the given callback for each node in this Variation Tree in depth-first order.VariationTree.toVariationDiff
(Function<VariationTreeNode<L>, DiffNode<L>> nodeConverter) VariationNode.toVariationTree
(Map<? super T, VariationTreeNode<L>> oldToNew) Returns a copy of this variation tree in aconcrete variation tree implementation
.Constructors in org.variantsync.diffdetective.variation.tree with parameters of type VariationTreeNodeModifierConstructorDescriptionVariationTree
(VariationTreeNode<L> root) Creates aVariationTree
with the given root and an unknown source.VariationTree
(VariationTreeNode<L> root, VariationTreeSource source) Creates aVariationTree
with the given root and source. -
Uses of VariationTreeNode in org.variantsync.diffdetective.variation.tree.graph
Fields in org.variantsync.diffdetective.variation.tree.graph declared as VariationTreeNodeModifier and TypeFieldDescriptionprivate final VariationTreeNode<L>
FormalTreeGraph.Edge.child
The field for thechild
record component.private final VariationTreeNode<L>
FormalTreeGraph.Edge.parent
The field for theparent
record component.Fields in org.variantsync.diffdetective.variation.tree.graph with type parameters of type VariationTreeNodeModifier and TypeFieldDescriptionprivate final Set<VariationTreeNode<L>>
FormalTreeGraph.nodes
The field for thenodes
record component.Methods in org.variantsync.diffdetective.variation.tree.graph that return VariationTreeNodeModifier and TypeMethodDescriptionFormalTreeGraph.Edge.child()
Returns the value of thechild
record component.FormalTreeGraph.Edge.parent()
Returns the value of theparent
record component.Methods in org.variantsync.diffdetective.variation.tree.graph that return types with arguments of type VariationTreeNodeModifier and TypeMethodDescriptionFormalTreeGraph.nodes()
Returns the value of thenodes
record component.Constructors in org.variantsync.diffdetective.variation.tree.graph with parameters of type VariationTreeNodeModifierConstructorDescriptionEdge
(VariationTreeNode<L> child, VariationTreeNode<L> parent) Creates an instance of aEdge
record class.Constructor parameters in org.variantsync.diffdetective.variation.tree.graph with type arguments of type VariationTreeNodeModifierConstructorDescriptionFormalTreeGraph
(Set<VariationTreeNode<L>> nodes, Set<FormalTreeGraph.Edge<L>> edges) Creates an instance of aFormalTreeGraph
record class.