Skip to content

Instantly share code, notes, and snippets.

@imarban
Last active August 22, 2016 05:21
Show Gist options
  • Save imarban/b54e2226e70ba05df2938902f70c0e7f to your computer and use it in GitHub Desktop.
Save imarban/b54e2226e70ba05df2938902f70c0e7f to your computer and use it in GitHub Desktop.
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