Last active
September 24, 2015 22:57
-
-
Save ekumachidi/47c50e3fe21b7415ccc7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Vehicle{ | |
public String color; | |
public String engineType; | |
public int wheels; | |
public int engine; | |
public void move(); | |
public void brake(); | |
public void stop(); | |
} | |
public class Truck extends Vehicle{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment