// // 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 java.util.ArrayList; import java.util.List; 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; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice maxOccurs="unbounded" minOccurs="0"> * <element ref="{http://www.springframework.org/schema/beans}arg-type"/> * </choice> * </sequence> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="replacer" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "argType" }) @XmlRootElement(name = "replaced-method") public class ReplacedMethod { @XmlElement(name = "arg-type") protected List<ArgType> argType; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "replacer") protected String replacer; /** * Gets the value of the argType property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the argType property. * * <p> * For example, to add a new item, do as follows: * <pre> * getArgType().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ArgType } * * */ public List<ArgType> getArgType() { if (argType == null) { argType = new ArrayList<ArgType>(); } return this.argType; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the replacer property. * * @return * possible object is * {@link String } * */ public String getReplacer() { return replacer; } /** * Sets the value of the replacer property. * * @param value * allowed object is * {@link String } * */ public void setReplacer(String value) { this.replacer = value; } }