home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino;
-
- import java.util.Vector;
-
- public interface Form extends Base {
- Vector getAliases() throws NotesException;
-
- Vector getFields() throws NotesException;
-
- Vector getFormUsers() throws NotesException;
-
- void setFormUsers(Vector var1) throws NotesException;
-
- String getName() throws NotesException;
-
- Database getParent() throws NotesException;
-
- Vector getReaders() throws NotesException;
-
- void setReaders(Vector var1) throws NotesException;
-
- boolean isSubForm() throws NotesException;
-
- boolean isProtectReaders() throws NotesException;
-
- void setProtectReaders(boolean var1) throws NotesException;
-
- boolean isProtectUsers() throws NotesException;
-
- void setProtectUsers(boolean var1) throws NotesException;
-
- void remove() throws NotesException;
- }
-