107108109110111112113114115116
* @return the corresponding word event */ private TextEvent getWordEvent(String word) { TextEvent e = this.recycling.get(word); if (e == null) { e = new WordEvent(word); this.recycling.put(word, e); } return e; }