
org.openfuxml.addon.wiki.data.jaxb.Wikireplace Maven / Gradle / Ivy
The newest version!
package org.openfuxml.addon.wiki.data.jaxb;
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.XmlElement;
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>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* <attribute name="from" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="to" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description"
})
@XmlRootElement(name = "wikireplace")
public class Wikireplace
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(namespace = "", required = true)
protected Object description;
@XmlAttribute(name = "from")
protected String from;
@XmlAttribute(name = "to")
protected String to;
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setDescription(Object value) {
this.description = value;
}
public boolean isSetDescription() {
return (this.description!= null);
}
/**
* Gets the value of the from property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFrom() {
return from;
}
/**
* Sets the value of the from property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFrom(String value) {
this.from = value;
}
public boolean isSetFrom() {
return (this.from!= null);
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTo(String value) {
this.to = value;
}
public boolean isSetTo() {
return (this.to!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy