Last active
August 22, 2016 05:21
-
-
Save imarban/b54e2226e70ba05df2938902f70c0e7f 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 { | |
private Engine engine; | |
private Transmission transmission; | |
public Vehicle(Engine engine, Transmission transmission) { | |
this.engine = engine; | |
this.transmission = transmission; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment