Root.java

package namespace.test;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type</p>.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.</p>
 * 
 * <pre>{@code
 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AbstractElement" type="{http://test.namespace/}STE_Reproducer" minOccurs="0"/>
 *         <element name="ConcreteElement" type="{http://test.namespace/}STE_ReproducerBasis" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * }</pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "abstractElement",
    "concreteElement"
})
@XmlRootElement(name = "Root")
public class Root {

    @XmlElement(name = "AbstractElement")
    protected STEReproducer abstractElement;
    @XmlElement(name = "ConcreteElement")
    protected STEReproducerBasis concreteElement;

    /**
     * Gets the value of the abstractElement property.
     * 
     * @return
     *     possible object is
     *     {@link STEReproducer }
     *     
     */
    public STEReproducer getAbstractElement() {
        return abstractElement;
    }

    /**
     * Sets the value of the abstractElement property.
     * 
     * @param value
     *     allowed object is
     *     {@link STEReproducer }
     *     
     */
    public void setAbstractElement(STEReproducer value) {
        this.abstractElement = value;
    }

    /**
     * Gets the value of the concreteElement property.
     * 
     * @return
     *     possible object is
     *     {@link STEReproducerBasis }
     *     
     */
    public STEReproducerBasis getConcreteElement() {
        return concreteElement;
    }

    /**
     * Sets the value of the concreteElement property.
     * 
     * @param value
     *     allowed object is
     *     {@link STEReproducerBasis }
     *     
     */
    public void setConcreteElement(STEReproducerBasis value) {
        this.concreteElement = value;
    }

}