26 lines
625 B
Java
26 lines
625 B
Java
package domain;
|
|
|
|
public class Vehicle {
|
|
public String typ;
|
|
public String name;
|
|
public float co2perKm;
|
|
public int averageKmPerH;
|
|
public int maxShortTripDistance;
|
|
|
|
public Vehicle(String name) {
|
|
this.typ = "bike";
|
|
this.name = name;
|
|
this.averageKmPerH = 22;
|
|
this.co2perKm = 0;
|
|
this.maxShortTripDistance = 100;
|
|
}
|
|
|
|
public Vehicle(int averageKmPerH, float co2perKm, String name) {
|
|
this.typ = "car";
|
|
this.name = name;
|
|
this.averageKmPerH = averageKmPerH;
|
|
this.co2perKm = co2perKm;
|
|
this.maxShortTripDistance = 150;
|
|
}
|
|
}
|