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

  1. package lotus.domino;
  2.  
  3. import java.util.Vector;
  4.  
  5. public interface Form extends Base {
  6.    Vector getAliases() throws NotesException;
  7.  
  8.    Vector getFields() throws NotesException;
  9.  
  10.    Vector getFormUsers() throws NotesException;
  11.  
  12.    void setFormUsers(Vector var1) throws NotesException;
  13.  
  14.    String getName() throws NotesException;
  15.  
  16.    Database getParent() throws NotesException;
  17.  
  18.    Vector getReaders() throws NotesException;
  19.  
  20.    void setReaders(Vector var1) throws NotesException;
  21.  
  22.    boolean isSubForm() throws NotesException;
  23.  
  24.    boolean isProtectReaders() throws NotesException;
  25.  
  26.    void setProtectReaders(boolean var1) throws NotesException;
  27.  
  28.    boolean isProtectUsers() throws NotesException;
  29.  
  30.    void setProtectUsers(boolean var1) throws NotesException;
  31.  
  32.    void remove() throws NotesException;
  33. }
  34.