Advertisement
Guest User

car

a guest
Oct 16th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package Google;
  2.  
  3. public class Car {
  4.     public String getCarModel() {
  5.         return carModel;
  6.     }
  7.  
  8.     public void setCarModel(String carModel) {
  9.         this.carModel = carModel;
  10.     }
  11.  
  12.     public int getCarSpeed() {
  13.         return carSpeed;
  14.     }
  15.  
  16.     public void setCarSpeed(int carSpeed) {
  17.         this.carSpeed = carSpeed;
  18.     }
  19.  
  20.     private String carModel;
  21.     private int carSpeed;
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement