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

  1. package lotus.domino;
  2.  
  3. public interface Name extends Base {
  4.    String getADMD() throws NotesException;
  5.  
  6.    String getAbbreviated() throws NotesException;
  7.  
  8.    String getCountry() throws NotesException;
  9.  
  10.    String getCanonical() throws NotesException;
  11.  
  12.    String getCommon() throws NotesException;
  13.  
  14.    String getGeneration() throws NotesException;
  15.  
  16.    String getGiven() throws NotesException;
  17.  
  18.    String getInitials() throws NotesException;
  19.  
  20.    String getAddr822LocalPart() throws NotesException;
  21.  
  22.    String getAddr822Phrase() throws NotesException;
  23.  
  24.    String getAddr821() throws NotesException;
  25.  
  26.    String getAddr822Comment1() throws NotesException;
  27.  
  28.    String getAddr822Comment2() throws NotesException;
  29.  
  30.    String getAddr822Comment3() throws NotesException;
  31.  
  32.    String getLanguage() throws NotesException;
  33.  
  34.    String getKeyword() throws NotesException;
  35.  
  36.    String getOrganization() throws NotesException;
  37.  
  38.    String getOrgUnit1() throws NotesException;
  39.  
  40.    String getOrgUnit2() throws NotesException;
  41.  
  42.    String getOrgUnit3() throws NotesException;
  43.  
  44.    String getOrgUnit4() throws NotesException;
  45.  
  46.    Session getParent() throws NotesException;
  47.  
  48.    String getPRMD() throws NotesException;
  49.  
  50.    String getSurname() throws NotesException;
  51.  
  52.    boolean isHierarchical() throws NotesException;
  53. }
  54.