//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.10.14 at 12:55:33 PM CEST
//
package org.springframework.schema.beans;
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;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <extension base="{http://www.springframework.org/schema/beans}listOrSetType">
* <attribute name="merge" type="{http://www.springframework.org/schema/beans}defaultable-boolean" default="default" />
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "set")
public class Set
extends ListOrSetType
{
@XmlAttribute(name = "merge")
protected DefaultableBoolean merge;
/**
* Gets the value of the merge property.
*
* @return
* possible object is
* {@link DefaultableBoolean }
*
*/
public DefaultableBoolean getMerge() {
if (merge == null) {
return DefaultableBoolean.DEFAULT;
} else {
return merge;
}
}
/**
* Sets the value of the merge property.
*
* @param value
* allowed object is
* {@link DefaultableBoolean }
*
*/
public void setMerge(DefaultableBoolean value) {
this.merge = value;
}
}