Interface ListProofNode
-
- All Known Implementing Classes:
ListProofBranch
,ListProofElement
,ListProofHashNode
public interface ListProofNode
Represents a proof that some elements exist in a ProofList at certain positions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(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
-
-