1 package text.event;2 3 public interface ClickListener4 {5 /* a word was clicked... exciting I know */6 public void wordClicked(ClickEvent ev);7 }8