Advertisement
SIRAKOV4444

Untitled

Jun 11th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public class Car {
  2. private String brand;
  3. private String model;
  4. private int horsePower;
  5.  
  6. public void setBrand(String newBrand) {
  7. brand = newBrand;
  8. }
  9.  
  10. public String getBrand() {
  11. return brand;
  12. }
  13.  
  14. public void setModel(String newModel) {
  15. model = newModel;
  16. }
  17.  
  18. public void setHorsePower(int newHorsePower) {
  19. horsePower = newHorsePower;
  20. }
  21.  
  22. public String getModel() {
  23. return model;
  24. }
  25.  
  26. public int getHorsePower() {
  27. return horsePower;
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement