public final class LexiconItem{
	private String word;
        private String speechpart;

        public LexiconItem(){};
        public LexiconItem(String word, String speechpart){
               this.word=word;
               this.speechpart=speechpart;
        }       


        public void put_word(String word){
              this.word=word;
        }

        public String get_word(){
              return this.word;
        }
     
        public void put_speechpart(String speechpart){
              this.speechpart=speechpart;
        }

        public String get_speechpart(){
              return this.speechpart;
        }

        public String toString(){
               return word+" "+speechpart;
        }       
} 




