Java Doc for JwmaContactImpl.java in  » Web-Mail » Jwma » dtw » webmail » model » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Mail » Jwma » dtw.webmail.model 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


dtw.webmail.model.JwmaContactImpl

All known Subclasses:   dtw.webmail.plugin.std.CastorContact,
JwmaContactImpl
public interface JwmaContactImpl extends JwmaContact(Code)
Interface for JwmaContact implementations. This is the interface any specialized implementation has to expose internal to controllers and models.
author:
   Dieter Wimberger
version:
   0.9.7 07/02/2003




Method Summary
public  voidsetAlternateEmail(String email)
     Sets the alternate email of this JwmaContactImpl.
Parameters:
  email - the alternate email of this contact as String.
public  voidsetBirthDate(Date date)
     Sets the birthdate of this JwmaContactImpl.
public  voidsetCategory(String category)
     Set the the category of this JwmaContactImpl.
public  voidsetComments(String comments)
     Sets the comments for this JwmaContactImpl.
public  voidsetCompany(String company)
     Sets the company name of this JwmaContactImpl.
public  voidsetCompanyURL(String url)
     Sets the company URL associated with this JwmaContactImpl.
Parameters:
  url - the company URL associated with this contact as String.
public  voidsetEmail(String email)
     Sets the email of this JwmaContactImpl.
Parameters:
  email - the email of this contact as String.
public  voidsetFaxNumber(String number)
     Sets the fax number of this JwmaContactImpl.
Parameters:
  number - the fax number of this contact as String.
public  voidsetFirstname(String firstname)
     Sets the firstname of this JwmaContactImpl.
public  voidsetFrequentRecipient(boolean b)
     Sets if this JwmaContactImpl represents a frequent mail recipient.
public  voidsetHomeCity(String city)
     Sets the city of this JwmaContactImpl at home.
public  voidsetHomeCountry(String country)
     Sets the country of this JwmaContactImpl at home.
public  voidsetHomePhoneNumber(String number)
     Sets the home phone number of this JwmaContactImpl.
Parameters:
  number - the home phone number of this contact asString.
public  voidsetHomeRegion(String region)
     Sets the region of this JwmaContactImpl at home.
public  voidsetHomeStreet(String street)
     Sets the street name of this JwmaContactImpl at home.
public  voidsetHomeZIP(String zip)
     Sets the ZIP of this JwmaContactImpl at home.
Parameters:
  zip - the ZIP of this contact at home as String.
public  voidsetLastname(String lastname)
     Sets the lastname of this JwmaContactImpl.
public  voidsetMiddlename(String middlename)
     Sets the middlename of this JwmaContactImpl.
public  voidsetMobileNumber(String number)
     Sets the mobile phone number of this JwmaContactImpl.
Parameters:
  number - the mobile phone number of this contact as String.
public  voidsetNickname(String nickname)
     Sets the nickname of this JwmaContactImpl.
public  voidsetPagerNumber(String number)
     Sets the pager number of this JwmaContactImpl.
Parameters:
  number - the pager number of this contact as String.
public  voidsetPrimarilyWorkContact(boolean b)
     Sets if this JwmaContactImpl is primarily a work contact.
public  voidsetRole(String role)
     Sets the organizational role of this JwmaContactImpl.
public  voidsetTitle(String title)
     Sets the title of this JwmaContactImpl.
public  voidsetURL(String url)
     Sets the URL associated with this JwmaContactImpl.
Parameters:
  url - the URL associated with this contact as String.
public  voidsetWorkCity(String city)
     Sets the city of this JwmaContactImpl at work.
public  voidsetWorkCountry(String country)
     Sets the country of this JwmaContactImpl at work.
public  voidsetWorkPhoneNumber(String number)
     Sets the work phone number of this JwmaContactImpl.
Parameters:
  number - the work phone number of this contact as String.
public  voidsetWorkRegion(String region)
     Sets the region of this JwmaContactImpl at work.
public  voidsetWorkStreet(String street)
     Sets the street name of this JwmaContactImpl at work.
public  voidsetWorkZIP(String zip)
     Sets the ZIP of this JwmaContactImpl at work.
Parameters:
  zip - the ZIP of this contact at work as String.



Method Detail
setAlternateEmail
public void setAlternateEmail(String email) throws JwmaException(Code)
Sets the alternate email of this JwmaContactImpl.
Parameters:
  email - the alternate email of this contact as String. JwmaException if the email is an invalid format.



setBirthDate
public void setBirthDate(Date date)(Code)
Sets the birthdate of this JwmaContactImpl.
Parameters:
  date - the birthdate as Date.



setCategory
public void setCategory(String category)(Code)
Set the the category of this JwmaContactImpl.
Parameters:
  category - of this contact as String.



setComments
public void setComments(String comments)(Code)
Sets the comments for this JwmaContactImpl.
Parameters:
  comments - the comments of this contact as String.



setCompany
public void setCompany(String company)(Code)
Sets the company name of this JwmaContactImpl.
Parameters:
  company - of this contact as String.



setCompanyURL
public void setCompanyURL(String url)(Code)
Sets the company URL associated with this JwmaContactImpl.
Parameters:
  url - the company URL associated with this contact as String. JwmaException if the url is an invalid format.



setEmail
public void setEmail(String email) throws JwmaException(Code)
Sets the email of this JwmaContactImpl.
Parameters:
  email - the email of this contact as String. JwmaException if the email is an invalid format.



setFaxNumber
public void setFaxNumber(String number) throws JwmaException(Code)
Sets the fax number of this JwmaContactImpl.
Parameters:
  number - the fax number of this contact as String. JwmaException if the number is an invalid format.



setFirstname
public void setFirstname(String firstname)(Code)
Sets the firstname of this JwmaContactImpl.
Parameters:
  firstname - of this contact as String.



setFrequentRecipient
public void setFrequentRecipient(boolean b)(Code)
Sets if this JwmaContactImpl represents a frequent mail recipient.
Parameters:
  b - true if this contact represents a frequentrecipient, false otherwise.



setHomeCity
public void setHomeCity(String city)(Code)
Sets the city of this JwmaContactImpl at home.
Parameters:
  city - the city of this contact at home as String.



setHomeCountry
public void setHomeCountry(String country)(Code)
Sets the country of this JwmaContactImpl at home.
Parameters:
  country - the country of this contact at home as String.



setHomePhoneNumber
public void setHomePhoneNumber(String number) throws JwmaException(Code)
Sets the home phone number of this JwmaContactImpl.
Parameters:
  number - the home phone number of this contact asString. JwmaException if the number is an invalid format.



setHomeRegion
public void setHomeRegion(String region)(Code)
Sets the region of this JwmaContactImpl at home.
Parameters:
  region - the region of this contact at home as String.



setHomeStreet
public void setHomeStreet(String street)(Code)
Sets the street name of this JwmaContactImpl at home.
Parameters:
  street - the street of this contact at home as String.



setHomeZIP
public void setHomeZIP(String zip) throws JwmaException(Code)
Sets the ZIP of this JwmaContactImpl at home.
Parameters:
  zip - the ZIP of this contact at home as String. JwmaException if the zip is an invalid format.



setLastname
public void setLastname(String lastname)(Code)
Sets the lastname of this JwmaContactImpl.
Parameters:
  lastname - of this contact as String.



setMiddlename
public void setMiddlename(String middlename)(Code)
Sets the middlename of this JwmaContactImpl.
Parameters:
  middlename - of this contact as String.



setMobileNumber
public void setMobileNumber(String number) throws JwmaException(Code)
Sets the mobile phone number of this JwmaContactImpl.
Parameters:
  number - the mobile phone number of this contact as String. JwmaException if the number is an invalid format.



setNickname
public void setNickname(String nickname)(Code)
Sets the nickname of this JwmaContactImpl.
Parameters:
  nickname - of this contact as String.



setPagerNumber
public void setPagerNumber(String number) throws JwmaException(Code)
Sets the pager number of this JwmaContactImpl.
Parameters:
  number - the pager number of this contact as String. JwmaException if the number is an invalid format.



setPrimarilyWorkContact
public void setPrimarilyWorkContact(boolean b)(Code)
Sets if this JwmaContactImpl is primarily a work contact.
Parameters:
  b - true if primarily work contact, false otherwise.



setRole
public void setRole(String role)(Code)
Sets the organizational role of this JwmaContactImpl. role the organizational role of this contact as String.



setTitle
public void setTitle(String title)(Code)
Sets the title of this JwmaContactImpl.
Parameters:
  title - of this contact as String.



setURL
public void setURL(String url)(Code)
Sets the URL associated with this JwmaContactImpl.
Parameters:
  url - the URL associated with this contact as String. JwmaException if the url is an invalid format.



setWorkCity
public void setWorkCity(String city)(Code)
Sets the city of this JwmaContactImpl at work.
Parameters:
  city - the city of this contact at work as String.



setWorkCountry
public void setWorkCountry(String country)(Code)
Sets the country of this JwmaContactImpl at work.
Parameters:
  country - the country of this contact at work as String.



setWorkPhoneNumber
public void setWorkPhoneNumber(String number) throws JwmaException(Code)
Sets the work phone number of this JwmaContactImpl.
Parameters:
  number - the work phone number of this contact as String. JwmaException if the number is an invalid format.



setWorkRegion
public void setWorkRegion(String region)(Code)
Sets the region of this JwmaContactImpl at work.
Parameters:
  region - the region of this contact at work as String.



setWorkStreet
public void setWorkStreet(String street)(Code)
Sets the street name of this JwmaContactImpl at work.
Parameters:
  street - the street of this contact at work as String.



setWorkZIP
public void setWorkZIP(String zip) throws JwmaException(Code)
Sets the ZIP of this JwmaContactImpl at work.
Parameters:
  zip - the ZIP of this contact at work as String. JwmaException if the zip is an invalid format.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.