INNER CODE UNIT · Java

getFuelType

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

	public String getFuelType() {
		return fuelType;
	}

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

	public int getMaxSpeed() {
		return maxSpeed;
	}

	public void setMaxSpeed(int maxSpeed) {
		this.maxSpeed = maxSpeed;
	}	

	public void move() {
		System.out.println("Fuel type :" +fuelType);

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…