home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Java / netscape / application / TextViewOwner.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-12  |  607 b   |  20 lines

  1. package netscape.application;
  2.  
  3. public interface TextViewOwner {
  4.    void textEditingDidBegin(TextView var1);
  5.  
  6.    void textEditingDidEnd(TextView var1);
  7.  
  8.    void textWillChange(TextView var1, Range var2);
  9.  
  10.    void textDidChange(TextView var1, Range var2);
  11.  
  12.    void attributesWillChange(TextView var1, Range var2);
  13.  
  14.    void attributesDidChange(TextView var1, Range var2);
  15.  
  16.    void selectionDidChange(TextView var1);
  17.  
  18.    void linkWasSelected(TextView var1, Range var2, String var3);
  19. }
  20.