// ********** Vehicle1.java **********
// ********** Vehicle class **********	
public class Vehicle1 {
	private String color;
		
	// Getter (method) - returns the value of the attribute
	public String getColor() {
		return color;
	}
		
	// Setter (method) - takes a parameter and assigns it to the attribute
	public void setColor(String c) {
		this.color = c;
	}
}