package sample; public class Thought { private String thoughtText; public Thought(String txt){ this.thoughtText = txt; } public String getThought() { return this.thoughtText; } }