package per2; public class Engine { private String manufacturer; private double engineDisplacement; private String fuelType; private int yearProduction; public Engine ( String manufacturer, double engineDisplacement, String fuelType, int yearProduction ) { this.manufacturer = manufacturer; this.engineDisplacement = engineDisplacement; this.fuelType = fuelType; this.yearProduction = yearProduction; } public String getManufacturer() { return manufacturer; } public double getEngineDisplacement() { return engineDisplacement; } public String getFuelType() { return fuelType; } public int getYearProduction() { return yearProduction; } }