home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / lotus / notes / internal / InfoPaneItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-15  |  454 b   |  21 lines

  1. package lotus.notes.internal;
  2.  
  3. import java.io.Serializable;
  4. import java.util.Enumeration;
  5.  
  6. interface InfoPaneItem extends Serializable {
  7.    boolean HasSubCategory();
  8.  
  9.    Enumeration GetEnumeration();
  10.  
  11.    String GetName();
  12.  
  13.    String GetLongName();
  14.  
  15.    boolean HasLongName();
  16.  
  17.    boolean CanPaste();
  18.  
  19.    void Print(String var1, boolean var2);
  20. }
  21.