5.6.7 Car Class Codehs Official

public void setModel(String model) { this.model = model; }

public int getYear() { return year; }

// Getters public String getMake() { return make; } 5.6.7 Car Class Codehs

public void setYear(int year) { this.year = year; } public void setModel(String model) { this

// Getter for make public String getMake() { return make; } // Getter for model public String getModel() { return model; } 5.6.7 Car Class Codehs

public String toString() { return year + " " + make + " " + model; } } Here’s the complete class (without a main method – CodeHS usually provides a separate tester file).