Operations.ctxt 937B

1234567891011121314
  1. #BlueJ class context
  2. comment0.target=Operations
  3. comment0.text=\n\ Calcul8tor\n\ Basic\ calculator\ functions\ (add,\ subtract,\ multiply)\n\ 10/21/18\n\ Open\ any\ of\ the\ 3\ functions\ (add,\ subtract,\ multiply)\ enter\ your\ integers\ and\ the\ system\ will\ return\ your\ answer\n\ Zavon\ Malone\n
  4. comment1.params=x\ y
  5. comment1.target=int\ add(int,\ int)
  6. comment1.text=\n\ The\ addition\ function.\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ the\ sum\ of\ x\ and\ y\n
  7. comment2.params=x\ y
  8. comment2.target=int\ subtract(int,\ int)
  9. comment2.text=\n\ The\ subtraction\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ y\ taken\ from\ x\n
  10. comment3.params=x\ y
  11. comment3.target=int\ multiply(int,\ int)
  12. comment3.text=\n\ The\ multiplication\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ x\ times\ y\n
  13. numComments=4