Skip to content
Snippets Groups Projects
Thought.java 227 B
Newer Older
  • Learn to ignore specific revisions
  • package sample;
    
    public class Thought {
    
        private final String thoughtText;
    
        public Thought(String txt){
    
    Eirik Martin Danielsen's avatar
    Eirik Martin Danielsen committed
            this.thoughtText = txt;
        }
        public String getThought()
        {
            return this.thoughtText;