// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3u2-hudson-jaxb-ri-2.2.3-4- // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.10.02 at 06:28:50 PM EDT // package seg.jUCMNav.nfp.generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for Versioning complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Versioning">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="addedFunctionalities" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="backwardCompatibility" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="fixedBugs" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="removedFunctionalities" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sameInterface" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Versioning", propOrder = { "addedFunctionalities", "backwardCompatibility", "fixedBugs", "removedFunctionalities", "sameInterface" }) public class Versioning { @XmlElement(required = true) protected String addedFunctionalities; protected boolean backwardCompatibility; @XmlElement(required = true) protected String fixedBugs; @XmlElement(required = true) protected String removedFunctionalities; protected boolean sameInterface; /** * Gets the value of the addedFunctionalities property. * * @return * possible object is * {@link String } * */ public String getAddedFunctionalities() { return addedFunctionalities; } /** * Sets the value of the addedFunctionalities property. * * @param value * allowed object is * {@link String } * */ public void setAddedFunctionalities(String value) { this.addedFunctionalities = value; } /** * Gets the value of the backwardCompatibility property. * */ public boolean isBackwardCompatibility() { return backwardCompatibility; } /** * Sets the value of the backwardCompatibility property. * */ public void setBackwardCompatibility(boolean value) { this.backwardCompatibility = value; } /** * Gets the value of the fixedBugs property. * * @return * possible object is * {@link String } * */ public String getFixedBugs() { return fixedBugs; } /** * Sets the value of the fixedBugs property. * * @param value * allowed object is * {@link String } * */ public void setFixedBugs(String value) { this.fixedBugs = value; } /** * Gets the value of the removedFunctionalities property. * * @return * possible object is * {@link String } * */ public String getRemovedFunctionalities() { return removedFunctionalities; } /** * Sets the value of the removedFunctionalities property. * * @param value * allowed object is * {@link String } * */ public void setRemovedFunctionalities(String value) { this.removedFunctionalities = value; } /** * Gets the value of the sameInterface property. * */ public boolean isSameInterface() { return sameInterface; } /** * Sets the value of the sameInterface property. * */ public void setSameInterface(boolean value) { this.sameInterface = value; } }