Uses of Class
es.cesar.quitesleep.ddbb.Contact

Packages that use Contact
es.cesar.quitesleep.beans   
es.cesar.quitesleep.ddbb   
 

Uses of Contact in es.cesar.quitesleep.beans
 

Methods in es.cesar.quitesleep.beans that return Contact
 Contact BCBean.getUsedContact()
           
 

Methods in es.cesar.quitesleep.beans with parameters of type Contact
 void BCBean.setUsedContact(Contact usedContact)
           
 

Constructors in es.cesar.quitesleep.beans with parameters of type Contact
BCBean(boolean isBlocked, Contact usedContact)
          Constructor with all parameters.
 

Uses of Contact in es.cesar.quitesleep.ddbb
 

Methods in es.cesar.quitesleep.ddbb that return Contact
 Contact CallLog.getContact()
           
 Contact Mail.getContact()
           
 Contact Banned.getContact()
           
 Contact Phone.getContact()
           
 Contact Selects.selectBannedContactForPhoneNumber(java.lang.String phoneNumber)
          Get the banned contact associate to the phone number passed to the function.
 Contact Selects.selectContactForMail(java.lang.String mailContact)
          Select Contact object match with the passed phoneNumber, search along all contact's phone numbers.
 Contact Selects.selectContactForName(java.lang.String contactName)
          Select one Contact that is the same with the name passed
 Contact Selects.selectContactForPhoneNumber(java.lang.String phoneContact)
          Select Contact object match with the passed phoneNumber, search along all contact's phone numbers.
 

Methods in es.cesar.quitesleep.ddbb that return types with arguments of type Contact
 java.util.List<Contact> Selects.selectAllContacts()
          Select all Contact objects from the DDBB and return it.
 java.util.List<Contact> Selects.selectAllNotBannedContacts()
          Get all not banned contacts from the database
 

Methods in es.cesar.quitesleep.ddbb with parameters of type Contact
 boolean Deletes.deleteContact(Contact contact)
          Delete one Contact object in the DDBB that matches with the passed
 boolean Inserts.insertContact(Contact contact)
          Insert one Contact object in the DDBB.
 java.util.List<Mail> Selects.selectAllContactMailForContact(Contact contact)
           
 void CallLog.setContact(Contact contact)
           
 void Mail.setContact(Contact contact)
           
 void Banned.setContact(Contact contact)
           
 void Phone.setContact(Contact contact)
           
 

Constructors in es.cesar.quitesleep.ddbb with parameters of type Contact
Banned(Contact contact, Schedule schedule)
          Contacts with all parameters
CallLog(Contact contact, java.lang.String phone, boolean sendSms, int numSendMail, java.lang.String timeCall)
          Constructor with all parameters
Mail(Contact contact, java.lang.String contactMail)
          Constructor with basic parameters
Mail(Contact contact, java.lang.String contactMail, boolean usedToSend)
          Constructor with all parameters
Phone(Contact contact, java.lang.String contactPhone)
          Constructor with basic paramters
Phone(Contact contact, java.lang.String contactPhone, boolean usedToSend)