INNER CODE UNIT · Java

Car

learning-zone/spring-boot-basics · spring/b-Spring-Object-Dependency/src/spring/Car.java:3

public class Car implements Vehicle {

	private String fuelType;
	private int maxSpeed;

	public String getFuelType() {
		return fuelType;
	}

	public void setFuelType(String fuelType) {
		this.fuelType = fuelType;
	}

	public int getMaxSpeed() {
		return maxSpeed;
	}

	public void setMaxSpeed(int maxSpeed) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…