1 package text; 2 3 public interface Word extends javax.jmi.reflect.RefObject { 4 public java.lang.String getColor(); 5 public void setColor(java.lang.String newValue); 6 public int getNumber(); 7 public void setNumber(int newValue); 8 public int getXxx(); 9 public void setXxx(int newValue); 10 public text.Sentence getSentence(); 11 public void setSentence(text.Sentence newValue); 12 } 13 | Popular Tags |