package org.docx4j.com.microsoft.schemas.office.webextensions.webextension_2010_11; import javax.xml.bind.Unmarshaller; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import org.docx4j.dml.CTOfficeArtExtensionList; import org.jvnet.jaxb2_commons.ppp.Child; /** * <p>Java class for CT_OsfWebExtensionReference complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CT_OsfWebExtensionReference"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/> * </sequence> * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="store" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="storeType" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_OsfWebExtensionReference", propOrder = { "extLst" }) public class CTOsfWebExtensionReference implements Child { protected CTOfficeArtExtensionList extLst; @XmlAttribute(name = "id", required = true) protected String id; @XmlAttribute(name = "version", required = true) protected String version; @XmlAttribute(name = "store") protected String store; @XmlAttribute(name = "storeType") protected String storeType; @XmlTransient private Object parent; /** * Gets the value of the extLst property. * * @return * possible object is * {@link CTOfficeArtExtensionList } * */ public CTOfficeArtExtensionList getExtLst() { return extLst; } /** * Sets the value of the extLst property. * * @param value * allowed object is * {@link CTOfficeArtExtensionList } * */ public void setExtLst(CTOfficeArtExtensionList value) { this.extLst = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the store property. * * @return * possible object is * {@link String } * */ public String getStore() { return store; } /** * Sets the value of the store property. * * @param value * allowed object is * {@link String } * */ public void setStore(String value) { this.store = value; } /** * Gets the value of the storeType property. * * @return * possible object is * {@link String } * */ public String getStoreType() { return storeType; } /** * Sets the value of the storeType property. * * @param value * allowed object is * {@link String } * */ public void setStoreType(String value) { this.storeType = value; } /** * Gets the parent object in the object tree representing the unmarshalled xml document. * * @return * The parent object. */ public Object getParent() { return this.parent; } public void setParent(Object parent) { this.parent = parent; } /** * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. * * @param parent * The parent object in the object tree. * @param unmarshaller * The unmarshaller that generated the instance. */ public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { setParent(parent); } }