src/include/common/vocl/vCard/ContactDetail.h

00001 
00020 //
00021 // @author Stefano Fornari @ Funambol
00022 // @version $Id: ContactDetail.h,v 1.3 2007/03/06 20:51:05 pohly Exp $
00023 //
00024 
00025 #ifndef INCL_PIM_CONTACT_DETAIL
00026 #define INCL_PIM_CONTACT_DETAIL
00027 
00029 #include "base/util/ArrayList.h"
00030 
00035 class ContactDetail {
00036 
00037     // ------------------------------------------------------------ Private data
00038 
00039     private:
00040         ArrayList* phones  ;
00041         ArrayList* emails  ;
00042         ArrayList* webPages;
00043 
00044     // -------------------------------------------- Constructors and Destructors
00045     public:
00049         ContactDetail();
00050         ~ContactDetail();
00051 
00052     // ---------------------------------------------------------- Public methods
00053 
00059         ArrayList* getPhones();
00060 
00065         void setPhones(ArrayList& list);
00066 
00072         ArrayList* getEmails();
00073 
00078         void setEmails(ArrayList& list);
00079 
00085         ArrayList* getWebPages();
00086 
00091         void setWebPages(ArrayList& list);
00092 
00098         ContactDetail* clone();
00099 
00100 };
00101 
00103 #endif

Generated on Fri Apr 27 12:29:19 2007 for Funambol C++ Client Library by  doxygen 1.5.2