/** 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 Ford extends Automobile { public Ford(Engine engine, Transmission transmission, int horsepower, int torque, String compressionRatio, String fuelEconomy, String fuelRecommended) { super(engine, transmission, horsepower, torque, compressionRatio, fuelEconomy, fuelRecommended); } public String toString() { return "Ford [" + super.toString() + "]"; } }