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 trial

Java Java Objects (Retired) Delivering the MVP Wrapping up

The code specifies that the class is ForumPost not Forum

public class ForumPost {
  private User mAuthor;
  private String mTitle;
  private String mDescription;
   private String mTopic;

  public void ForumPost(String topic){
    mTopic = topic;
  }
  public User getAuthor() {
    return mAuthor;
  }

  public String getTitle() {
    return mTitle;
  }

  // TODO: We need to expose the description
}
Frankie Lamar
Frankie Lamar
11,120 Points

Look again. There are two separate class ForumPost.java and Forum.java. One class creates a new forum post the other displays a list of all the forum posts.

Ken Alger
Ken Alger
Treehouse Teacher

Edited for markup

Please see this post for directions to post code to the forum.