public class WordData { String word= new String(); int count; WordData(String input) { word=input; count=1; } void increment() { count++; } }