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

  1. package netscape.application;
  2.  
  3. public interface ExtendedTarget extends Target {
  4.    String SET_FONT = "setFont";
  5.    String NEW_FONT_SELECTION = "newFontSelection";
  6.    String SHOW_FONT_CHOOSER = "showFontChooser";
  7.    String SHOW_COLOR_CHOOSER = "showColorChooser";
  8.    String COPY = "copy";
  9.    String CUT = "cut";
  10.    String PASTE = "paste";
  11.  
  12.    boolean canPerformCommand(String var1);
  13. }
  14.