class Painting { private String artist; private String title; private int marketValue; Painting(String title, String artist, int marketValue) { this.title = title; this.artist = artist; this.marketValue = marketValue; } int getMarketValue() { return this.marketValue; } public String toString() { return this.title + " by " + artist; } }