/*****************************************************************/ /* Copyright 2013 Code Strategies */ /* This code may be freely used and distributed in any project. */ /* However, please do not remove this credit if you publish this */ /* code in paper or electronic form, such as on a web site. */ /*****************************************************************/ package com.cakes; public class BigBus extends Vehicle { public BigBus(Engine engine) { this.weightInKilos = 3000; this.engine = engine; } @Override public void drive() { System.out.println("\nThe big bus is driving"); int horsepower = engine.go(); reportOnSpeed(horsepower); } }