Interface ListProofNode
-
- All Known Implementing Classes:
ListProofBranch,ListProofElement,ListProofHashNode
public interface ListProofNodeRepresents a proof that some elements exist in a ProofList at certain positions.
-
-
Method Summary
Modifier and Type Method Description voidaccept(ListProofVisitor visitor)Applies the visitor to this proof node.
-
-
-
Method Detail
-
accept
void accept(ListProofVisitor visitor)
Applies the visitor to this proof node.Most implementations simply call
visitor.visit(this);- Parameters:
visitor- a visitor to apply to this node
-
-