Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package lab08;
/**
* Data container for recording the odometer reading
* and gallons from filling up the gas tank of a vehicle.
*/
public class FillUp
{
/**
* Odometer reading when the tank was filled.
*/
private final int odometer;
/**
* Gallons needed to fill the tank.
*/
private final double gallons;
/**
* Constructs a new FillUp object with the given data.
* @param givenOdometer
* odometer reading
* @param givenGallons
* number of gallons
*/
public FillUp(int givenOdometer, double givenGallons)
{
odometer = givenOdometer;
gallons = givenGallons;
}
/**
* Returns the odometer reading.
* @return
* the odometer reading
*/
public int getOdometer()
{
return odometer;
}
/**
* Returns the number of gallons.
* @return
* number of gallons
*/
public double getGallons()
{
return gallons;
}
}