Uses of Class
visitor.Visitor
Packages that use Visitor
-
Uses of Visitor in calculator
Methods in calculator with parameters of type Visitor -
Uses of Visitor in calculator.atoms
Methods in calculator.atoms with parameters of type VisitorModifier and TypeMethodDescriptionvoidvoidaccept method to implement the visitor design pattern to traverse arithmetic expressions.voidvoidaccept method to implement the visitor design pattern to traverse arithmetic expressions. -
Uses of Visitor in calculator.functions
Methods in calculator.functions with parameters of type Visitor -
Uses of Visitor in calculator.operations
Methods in calculator.operations with parameters of type Visitor -
Uses of Visitor in visitor
Modifier and TypeClassDescriptionclassCounter is a visitor that counts the numbers, operations, and depth in an arithmetic expression.classEvaluation is a concrete visitor that serves to compute and evaluate the results of arithmetic expressions.classPrinter is a Visitor that converts arithmetic expressions into Strings, using a specified notation (prefix, infix or postfix).