the second Objects lab.

Pet.java 697B

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