1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2021.01.15 at 11:43:19 AM EST 6 // 7 8 9 package com.healthmarketscience.jackcess.crypt.model; 10 11 import java.util.ArrayList; 12 import java.util.List; 13 14 /** 15 * <p>Java class for CT_KeyEncryptors complex type. 16 * 17 * <p>The following schema fragment specifies the expected content contained within this class. 18 * 19 * <pre> 20 * <complexType name="CT_KeyEncryptors"> 21 * <complexContent> 22 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 23 * <sequence> 24 * <element name="keyEncryptor" type="{http://schemas.microsoft.com/office/2006/encryption}CT_KeyEncryptor" maxOccurs="unbounded"/> 25 * </sequence> 26 * </restriction> 27 * </complexContent> 28 * </complexType> 29 * </pre> 30 * 31 * 32 */ 33 // @XmlAccessorType(XmlAccessType.FIELD) 34 // @XmlType(name = "CT_KeyEncryptors", propOrder = { 35 // "keyEncryptor" 36 // }) 37 public class CTKeyEncryptors { 38 39 // @XmlElement(required = true) 40 protected List<CTKeyEncryptor> keyEncryptor; 41 42 /** 43 * Gets the value of the keyEncryptor property. 44 * 45 * <p> 46 * This accessor method returns a reference to the live list, 47 * not a snapshot. Therefore any modification you make to the 48 * returned list will be present inside the JAXB object. 49 * This is why there is not a <CODE>set</CODE> method for the keyEncryptor property. 50 * 51 * <p> 52 * For example, to add a new item, do as follows: 53 * <pre> 54 * getKeyEncryptor().add(newItem); 55 * </pre> 56 * 57 * 58 * <p> 59 * Objects of the following type(s) are allowed in the list 60 * {@link CTKeyEncryptor } 61 * 62 * 63 */ 64 public List<CTKeyEncryptor> getKeyEncryptor() { 65 if (keyEncryptor == null) { 66 keyEncryptor = new ArrayList<CTKeyEncryptor>(); 67 } 68 return this.keyEncryptor; 69 } 70 71 }