Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. car shop
  2.  
  3. package one;
  4.  
  5. public class Car_shop {
  6.  
  7. String name;
  8. Car cars;
  9.  
  10. public Car_shop(String name) {
  11. this.name = name;
  12. }
  13. public Car getCar() {
  14. return cars;
  15. }
  16. public void setCar(Car cars) {
  17. this.cars = cars;
  18. }
  19.  
  20. public void printCar_shop() {
  21. System.out.println("Имя: "+ name );
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement