
org.openfuxml.xml.renderer.html.Template Maven / Gradle / Ivy
The newest version!
package org.openfuxml.xml.renderer.html;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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>
* </sequence>
* <attribute name="code" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="fileCode" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "template")
public class Template
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "code")
protected String code;
@XmlAttribute(name = "fileCode")
protected String fileCode;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
public boolean isSetCode() {
return (this.code!= null);
}
/**
* Gets the value of the fileCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileCode() {
return fileCode;
}
/**
* Sets the value of the fileCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileCode(String value) {
this.fileCode = value;
}
public boolean isSetFileCode() {
return (this.fileCode!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy