Build a simple PhoneBook program.

PhoneNumbers.java 685B

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * Write a description of class PhoneNumbers here.
  3. *
  4. * @author (your name)
  5. * @version (a version number or a date)
  6. */
  7. public class PhoneNumbers
  8. {
  9. // instance variables - replace the example below with your own
  10. private int x;
  11. /**
  12. * Constructor for objects of class PhoneNumbers
  13. */
  14. public PhoneNumbers()
  15. {
  16. // initialise instance variables
  17. x = 0;
  18. }
  19. /**
  20. * An example of a method - replace this comment with your own
  21. *
  22. * @param y a sample parameter for a method
  23. * @return the sum of x and y
  24. */
  25. public int sampleMethod(int y)
  26. {
  27. // put your code here
  28. return x + y;
  29. }
  30. }