Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAshley Leggett
420 PointsOnce again can someone please help I am stuck on task 2 of 2. Java project. Thanks
Update the DummyItem constructor to set the new 'director' member variable to a third parameter also named ‘director’. Then go back and add director last names to the items. Bonus points if you use the correct directors for the movie!
public class DummyContent {
public static List<DummyItem> ITEMS = new ArrayList<DummyItem>();
public static Map<String, DummyItem> ITEM_MAP = new HashMap<String, DummyItem>();
static { // Add 3 sample items.
addItem(new DummyItem("1", "The Avengers", "Directors name1"));
addItem(new DummyItem("2", "The Hobbit", "Directors name2"));
addItem(new DummyItem("3", "Ball of Fire", "Directors name3"));
}
private static void addItem(DummyItem item) {
ITEMS.add(item);
ITEM_MAP.put(item.id, item);
}
/**
* A dummy item representing a piece of content.
*/
public static class DummyItem {
public String id;
public String content;
public String director;
public DummyItem(String id, String content) {
this.id = id;
this.content = content;
this.director = director;
}
}
}
4 Answers
Nathaniel Janick
11,671 PointsCheck the parameters of the DummyItem "constructor" within the DummyItem class. The line "this.director = director;" is not being told how to find ".director"...
Ashley Leggett
420 PointsOk so this.director = director; needs to find the string director? how can I do this?
Ashley Leggett
420 PointsI got it thanks!!
Ashley Leggett
420 Pointspublic DummyItem(String id, String content, String director) {
this.id = id;
this.content = content;
this.director = director;