home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 May / PCWK5A99.ISO / Linuxwld / linuxwld.exe / ChatRenderer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-05-31  |  627 b   |  29 lines

  1. import java.awt.Color;
  2. import java.awt.Font;
  3.  
  4. public interface ChatRenderer {
  5.    String getSelectedText();
  6.  
  7.    void appendTextWithWrap(String var1, boolean var2);
  8.  
  9.    void appendTextWithWrap(String var1, String var2, String var3, boolean var4);
  10.  
  11.    void setApplet(ParaChat var1);
  12.  
  13.    void setnl(boolean var1);
  14.  
  15.    boolean getnl();
  16.  
  17.    Color getBackground();
  18.  
  19.    void setBackground(Color var1);
  20.  
  21.    Color getForeground();
  22.  
  23.    void setForeground(Color var1);
  24.  
  25.    Font getFont();
  26.  
  27.    void setFont(Font var1);
  28. }
  29.