예제 #1
0
 public MinigContact(
     String lastName,
     String firstName,
     String email,
     String function,
     String homeVoice,
     String cellVoice,
     String street,
     String zip,
     String location) {
   obm = new Contact();
   obm.setLastname(lastName);
   obm.setFirstname(firstName);
   obm.addEmail("INTERNET;X-OBM-Ref1", new Email(email));
   obm.setTitle(function);
   // TODO add missing fields
 }
예제 #2
0
 public void setTitle(String title) {
   obm.setTitle(title);
 }