org.docx4j.bibliography.CTSources Maven / Gradle / Ivy
Show all versions of docx4j-openxml-objects Show documentation
package org.docx4j.bibliography;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CT_Sources complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CT_Sources">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Source" type="{http://schemas.openxmlformats.org/officeDocument/2006/bibliography}CT_SourceType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="SelectedStyle" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" />
* <attribute name="StyleName" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" />
* <attribute name="URI" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CT_Sources", propOrder = {
"source"
})
public class CTSources {
@XmlElement(name = "Source")
protected List source;
@XmlAttribute(name = "SelectedStyle")
protected String selectedStyle;
@XmlAttribute(name = "StyleName")
protected String styleName;
@XmlAttribute(name = "URI")
protected String uri;
/**
* Gets the value of the source property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the source property.
*
*
* For example, to add a new item, do as follows:
*
* getSource().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CTSourceType }
*
*
*/
public List getSource() {
if (source == null) {
source = new ArrayList();
}
return this.source;
}
/**
* Gets the value of the selectedStyle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSelectedStyle() {
return selectedStyle;
}
/**
* Sets the value of the selectedStyle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSelectedStyle(String value) {
this.selectedStyle = value;
}
/**
* Gets the value of the styleName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStyleName() {
return styleName;
}
/**
* Sets the value of the styleName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStyleName(String value) {
this.styleName = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getURI() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setURI(String value) {
this.uri = value;
}
}