public ElementArrayLabel(Contact paramContact, ElementArray paramElementArray) {
   decorator = new Qualifier(paramContact);
   type = paramContact.getType();
   entry = paramElementArray.entry();
   name = paramElementArray.name();
   label = paramElementArray;
 }
 /**
  * Constructor for the <code>ElementArrayLabel</code> object. This creates a label object, which
  * can be used to convert an element node to an array of XML serializable objects.
  *
  * @param contact this is the contact that this label represents
  * @param label the annotation that contains the schema details
  */
 public ElementArrayLabel(Contact contact, ElementArray label) {
   this.detail = new Introspector(contact, this);
   this.decorator = new Qualifier(contact);
   this.type = contact.getType();
   this.entry = label.entry();
   this.name = label.name();
   this.label = label;
 }