package sample; public class Thought {
public String thoughtText;
public Thought(String txt){ thoughtText = txt; }
}