matthewalangreen
3/23/2018 - 6:14 PM

PhotoClass

public class Photo {
	
	private String photographer;
	private String date;
	private int[][] picture;
	
    // Implement these methods.
    // Photo
    // getPhotographer
    // getDate
    // getPicture
    
    public Photo(String photographer, String date, int[][] picture)
    {
        this.photographer = photographer;
        this.date = date;
        this.picture = picture;
    }
    
    public String getPhotographer()
    {
        return photographer;
    }
    
    public String getDate()
    {
        return date;
    }
    
    public int[][] getPicture()
    {
        return picture;
    }
}