Package com.project.calculator


package com.project.calculator
  • Classes
    Class
    Description
    The BaseUI class represents the main graphical user interface for a simple calculator application.
    The InfixToPostfix class is responsible for converting an infix expression to postfix notation and triggering the postfix evaluation process.
    The KeyboardEvents class handles keyboard input events for the calculator.
    The Logic class handles the core operations and event handling for the calculator.
    The MainUI class represents the panel containing all calculator buttons.
    The PostfixEvaluation class evaluates a mathematical expression in postfix notation using a stack-based approach.