KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > text > ContainsWord


1 package text;
2
3 public interface ContainsWord extends javax.jmi.reflect.RefAssociation {
4     public boolean exists(text.Sentence sentence, text.Word word);
5     public text.Sentence getSentence(text.Word word);
6     public java.util.List JavaDoc getWord(text.Sentence sentence);
7     public boolean add(text.Sentence sentence, text.Word word);
8     public boolean remove(text.Sentence sentence, text.Word word);
9 }
10
Popular Tags