Guest User

Untitled

a guest
Dec 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. interface WheelFittingExpert {
  2.  
  3. String getDescription();
  4. }
  5.  
  6. class CarExpert implements WheelFittingExpert {
  7.  
  8. public String getDescription() {
  9. return "I can only fit car wheels";
  10. }
  11. }
  12.  
  13. class BikeExpert implements WheelFittingExpert {
  14.  
  15. public String getDescription()
  16. {
  17. return "I can only fit bike wheels";
  18. }
  19. }
Add Comment
Please, Sign In to add comment