public final class InputItem{
        private int position;
        private String word;
        private String[] speechparts;
        
        public InputItem(){};
        
        public InputItem(int position, String word, String[] speechparts){
               this.position=position;
               this.word=word;
               this.speechparts=speechparts;
        }       

        public String get_word(){
              return this.word;
        } 

        public int get_position(){
              return this.position;
        }
	
        public String[] get_speechparts(){
              return this.speechparts;
        }
}
