KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > pim > addressbook > ContactGroup

javax.pim.addressbook
Class ContactGroup

java.lang.Object
  |
  +--javax.pim.database.Item
        |
        +--javax.pim.addressbook.ContactCard
              |
              +--javax.pim.addressbook.ContactGroup

public void addContact(ContactCard card)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int contactCount()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ContactGroup()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1712]urgent
By june on 2006/02/15 20:21:23  Rate
int getDisplayedFieldCode (  )   {  
         int fieldCode = 0; 
         switch  ( listType )   {  
       case PIM.CONTACT_LIST: 
        {  
               if  (  )  
                {  
                 fieldCode = Contact.FORMATTED_NAME; 
                 break; 
  
  
               } else 
                 {  
                 fieldCode = Contact.NOTE; 
                 break; 
          }  
        }  
  
  
             case PIM.EVENT_LIST: 
              {  
                 fieldCode = Event.SUMMARY; 
                 break; 
        }  
  
  
             case PIM.TODO_LIST: 
              {  
                 fieldCode = ToDo.SUMMARY; 
                 break; 
        }  
          }  
         return fieldCode; 
      } 


public ContactCard[] getContacts()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeContact(ContactCard card)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags