package com.michaelthomas.collection; public class MyItem { //NOTE: For learning, you must see the JUnit test file in the /test/ directory and matching package! private String id; private String description; public MyItem(String name, String description) { super(); this.id = name; this.description = description; } public void setDescription(String description) { this.description = description; } public String getDescription() { return description; } public void setName(String name) { this.id = name; } public String getName() { return id; } public String toString() { return id; } }