Ejemplo n.º 1
0
 public void setContactTags(List<Contact> contactTags) {
   Set<Contact> result = new HashSet<Contact>();
   if (contactTags != null && !contactTags.isEmpty()) {
     result.addAll(contactTags);
   }
   tag.setContactTags(result);
 }
Ejemplo n.º 2
0
  /**
   * Create a new empty instance of the one-to-many field
   *
   * @return forward to the same page
   */
  public String editContactTags() {
    Contact item = new Contact();

    if (tag.getContactTags() == null) {
      tag.setContactTags(new HashSet());
    }
    tag.getContactTags().add(item);
    return null;
  }
Ejemplo n.º 3
0
 public void setContacts(Set<Contact> contacts) {
   tag.setContactTags(contacts);
 }