All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thegoate.Veterinarian Maven / Gradle / Ivy

There is a newer version: 0.15.17.202312051550
Show newest version
package com.thegoate;

/**
 * Created by Eric Angeli on 7/1/2020.
 */
public final class Veterinarian {
	Goate health;

	public Veterinarian(Goate health){
		this.health = health;
	}

	public Goate getHealth(){
		return health;
	}

	@Override
	public String toString(){
		if(health!=null){
			return "\n" + health.toString("\t\t", "");
		}
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy