Files
prog-intro/java/wordStat/WordInfo.java

16 lines
286 B
Java

/**
* @author Nikita Doschennikov (me@fymio.us)
*/
public class WordInfo {
String word;
int count;
int firstIndex;
WordInfo(String word, int count, int firstIndex) {
this.word = word;
this.count = count;
this.firstIndex = firstIndex;
}
}