SciCalc.java 632B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * 4.2 Scientific Calculator Group Project
  3. * Trinh Tong, Lauren Green, Michelle Dimarino
  4. * Advanced Calculator Menu
  5. *
  6. * TO DO
  7. *
  8. * Add MainMenu class - displays mainmenu / calls back to main menu
  9. */
  10. public class SciCalc
  11. {
  12. public void toSwitchDisplay() {
  13. SwitchDisplay switchDisplayMenu = new SwitchDisplay();
  14. }
  15. public void toMemory() {
  16. MemoryFunc memoryMenu = new MemoryFunc();
  17. }
  18. /**
  19. * To Trig -
  20. * sends user to trig functions of the calculator
  21. */
  22. public void toTrig(int y)
  23. {
  24. // calls the trig menu
  25. Trig trigMenu = new Trig();
  26. }
  27. }