legstar.test.jaxb.cflt01.Cflt01Record Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.01.05 at 05:42:50 PM CET
//
package legstar.test.jaxb.cflt01;
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 Cflt01Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Cflt01Record">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="cfltParent1" type="{http://jaxb.test.legstar/cflt01}CfltParent1"/>
* <element name="cfltParent2" type="{http://jaxb.test.legstar/cflt01}CfltParent2"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Cflt01Record", namespace = "http://jaxb.test.legstar/cflt01", propOrder = {
"cfltParent1",
"cfltParent2"
})
public class Cflt01Record {
@XmlElement(namespace = "http://jaxb.test.legstar/cflt01", required = true)
protected CfltParent1 cfltParent1;
@XmlElement(namespace = "http://jaxb.test.legstar/cflt01", required = true)
protected CfltParent2 cfltParent2;
/**
* Gets the value of the cfltParent1 property.
*
* @return
* possible object is
* {@link CfltParent1 }
*
*/
public CfltParent1 getCfltParent1() {
return cfltParent1;
}
/**
* Sets the value of the cfltParent1 property.
*
* @param value
* allowed object is
* {@link CfltParent1 }
*
*/
public void setCfltParent1(CfltParent1 value) {
this.cfltParent1 = value;
}
/**
* Gets the value of the cfltParent2 property.
*
* @return
* possible object is
* {@link CfltParent2 }
*
*/
public CfltParent2 getCfltParent2() {
return cfltParent2;
}
/**
* Sets the value of the cfltParent2 property.
*
* @param value
* allowed object is
* {@link CfltParent2 }
*
*/
public void setCfltParent2(CfltParent2 value) {
this.cfltParent2 = value;
}
}