/** This is a driver class Automobiles which is inherited to Engine and Transmission * Class. * http://www.fordvehicles.com/cars/fusion/features/specs/ * * @author Freeman Lo * @version 0.0.1 Build 1 Jan 28, 2014. * */ public class Transmission { private String type; public Transmission(String type) { this.type = type; } public String getType() { return this.type; } public String toString() { return "Transmission [type=" + this.type + "]"; } }