
org.openfuxml.content.ofx.table.Table Maven / Gradle / Ivy
The newest version!
package org.openfuxml.content.ofx.table;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openfuxml.content.ofx.Title;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.openfuxml.org}title" minOccurs="0"/>
* <element ref="{http://www.openfuxml.org/table}specification" minOccurs="0"/>
* <element ref="{http://www.openfuxml.org/table}content"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"title",
"specification",
"content"
})
@XmlRootElement(name = "table")
public class Table implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(namespace = "http://www.openfuxml.org")
protected Title title;
protected Specification specification;
@XmlElement(required = true)
protected Content content;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link Title }
*
*/
public Title getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link Title }
*
*/
public void setTitle(Title value) {
this.title = value;
}
public boolean isSetTitle() {
return (this.title!= null);
}
/**
* Gets the value of the specification property.
*
* @return
* possible object is
* {@link Specification }
*
*/
public Specification getSpecification() {
return specification;
}
/**
* Sets the value of the specification property.
*
* @param value
* allowed object is
* {@link Specification }
*
*/
public void setSpecification(Specification value) {
this.specification = value;
}
public boolean isSetSpecification() {
return (this.specification!= null);
}
/**
* Gets the value of the content property.
*
* @return
* possible object is
* {@link Content }
*
*/
public Content getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is
* {@link Content }
*
*/
public void setContent(Content value) {
this.content = value;
}
public boolean isSetContent() {
return (this.content!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy