16 lines
286 B
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;
|
|
}
|
|
}
|