jadex.bdi.planlib.watchdog
Class ContactData

java.lang.Object
  extended by jadex.bdi.planlib.watchdog.ContactData

public class ContactData
extends java.lang.Object

Contact information data bean.


Field Summary
protected  java.lang.String email
          The email address.
protected  java.lang.String icq
          The icq no.
protected  java.lang.String name
          The name.
protected  java.lang.String phone
          The mobile phone no.
 
Constructor Summary
ContactData()
          Constructor for ContactData.
ContactData(java.lang.String name, java.lang.String email, java.lang.String phone, java.lang.String icq)
          Create a new contact.
 
Method Summary
 java.lang.String getEmail()
          Get the email.
 java.lang.String getIcq()
          Getter for icq
 java.lang.String getName()
          Get the name.
 java.lang.String getPhone()
          Get the phone no.
 void setEmail(java.lang.String email)
          Set the email.
 void setIcq(java.lang.String icq)
          Setter for icq.
 void setName(java.lang.String name)
          Set the name.
 void setPhone(java.lang.String phone)
          Set the phone no.
 java.lang.String toString()
          Returns a string representation of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

protected java.lang.String name
The name.


email

protected java.lang.String email
The email address.


phone

protected java.lang.String phone
The mobile phone no.


icq

protected java.lang.String icq
The icq no.

Constructor Detail

ContactData

public ContactData()
Constructor for ContactData.


ContactData

public ContactData(java.lang.String name,
                   java.lang.String email,
                   java.lang.String phone,
                   java.lang.String icq)
Create a new contact.

Parameters:
name -
email - The email.
phone - The phone.
icq -
Method Detail

getName

public java.lang.String getName()
Get the name.

Returns:
The name.

setName

public void setName(java.lang.String name)
Set the name.

Parameters:
name - The name.

getEmail

public java.lang.String getEmail()
Get the email.

Returns:
The email.

setEmail

public void setEmail(java.lang.String email)
Set the email.

Parameters:
email - The email.

getPhone

public java.lang.String getPhone()
Get the phone no.

Returns:
The phone no.

setPhone

public void setPhone(java.lang.String phone)
Set the phone no.

Parameters:
phone - The phone no.

getIcq

public java.lang.String getIcq()
Getter for icq

Returns:
Returns icq.

setIcq

public void setIcq(java.lang.String icq)
Setter for icq.

Parameters:
icq - The ContactData.java value to set

toString

public java.lang.String toString()
Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Overrides:
toString in class java.lang.Object
Returns:
a string representation of the object.


Copyright © 2010. All Rights Reserved.