home *** CD-ROM | disk | FTP | other *** search
- package lotus.notes;
-
- public class Name extends NotesBase {
- private transient Session session;
-
- protected Name() throws NotesException {
- }
-
- protected Name(Session var1, int var2) throws NotesException {
- super(var2, 19);
- if (var1 == null) {
- throw new NotesException(JavaString.resource.getString("missing_session_object"));
- } else {
- this.session = var1;
- var1.AddObject(this);
- }
- }
-
- protected void InternalFinalize() throws NotesException {
- super.finalize();
- }
-
- public void finalize() throws NotesException {
- this.session.RemoveObject(this);
- this.InternalFinalize();
- }
-
- public void recycle() throws NotesException {
- try {
- this.session.RemoveObject(this);
- } catch (NotesException var5) {
- } finally {
- super.Recycle();
- }
-
- }
-
- public int GetCppObj() {
- return super.GetCppObj();
- }
-
- public String getADMD() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1620);
- }
-
- public String getAbbreviated() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1621);
- }
-
- public String getCountry() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1622);
- }
-
- public String getCanonical() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1623);
- }
-
- public String toString() {
- String var1;
- try {
- var1 = this.getCanonical();
- } catch (Exception var2) {
- var1 = null;
- }
-
- return var1;
- }
-
- public String getCommon() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1624);
- }
-
- public String getGiven() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1625);
- }
-
- public String getInitials() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1626);
- }
-
- public String getOrganization() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1627);
- }
-
- public String getOrgUnit1() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1628);
- }
-
- public String getOrgUnit2() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1629);
- }
-
- public String getOrgUnit3() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1630);
- }
-
- public String getOrgUnit4() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1631);
- }
-
- public String getPRMD() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1632);
- }
-
- public String getGeneration() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1633);
- }
-
- public String getSurname() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1634);
- }
-
- public String getKeyword() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1635);
- }
-
- public boolean isHierarchical() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1636);
- }
- }
-