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