5.6.7 Car Class Codehs -
// Getter for make public String getMake() { return make; } // Getter for model public String getModel() { return model; }
public void setYear(int year) { this.year = year; } 5.6.7 Car Class Codehs
// Getter for year public int getYear() { return year; } These allow you to change the values after the object is created. // Getter for make public String getMake() {