Specifications
Sun Services
Java™ Programming Language
Module 7, slide 29 of 44
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
Abstract Classes
1 public class FuelNeedsReport {
2 private Company company;
3
4 public FuelNeedsReport(Company company) {
5 this.company = company;
6}
7
8 public void generateText(PrintStream output) {
9 Vehicle1 v;
10 double fuel;
11 double total_fuel = 0.0;
12
13 for ( int i = 0; i < company.getFleetSize(); i++ ) {
14 v = company.getVehicle(i);
15










