001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2017.04.15 at 10:50:52 PM IST 
006//
007
008
009package com.thed.zblast.parser.jaxb.junit;
010
011import javax.xml.bind.annotation.XmlAccessType;
012import javax.xml.bind.annotation.XmlAccessorType;
013import javax.xml.bind.annotation.XmlAttribute;
014import javax.xml.bind.annotation.XmlRootElement;
015import javax.xml.bind.annotation.XmlType;
016
017
018/**
019 * <p>Java class for anonymous complex type.
020 * 
021 * <p>The following schema fragment specifies the expected content contained within this class.
022 * 
023 * <pre>
024 * &lt;complexType>
025 *   &lt;complexContent>
026 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027 *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
028 *       &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029 *     &lt;/restriction>
030 *   &lt;/complexContent>
031 * &lt;/complexType>
032 * </pre>
033 * 
034 * 
035 */
036@XmlAccessorType(XmlAccessType.FIELD)
037@XmlType(name = "")
038@XmlRootElement(name = "property")
039public class Property {
040
041    @XmlAttribute(name = "name", required = true)
042    protected String name;
043    @XmlAttribute(name = "value", required = true)
044    protected String value;
045
046    /**
047     * Gets the value of the name property.
048     * 
049     * @return
050     *     possible object is
051     *     {@link String }
052     *     
053     */
054    public String getName() {
055        return name;
056    }
057
058    /**
059     * Sets the value of the name property.
060     * 
061     * @param value
062     *     allowed object is
063     *     {@link String }
064     *     
065     */
066    public void setName(String value) {
067        this.name = value;
068    }
069
070    /**
071     * Gets the value of the value property.
072     * 
073     * @return
074     *     possible object is
075     *     {@link String }
076     *     
077     */
078    public String getValue() {
079        return value;
080    }
081
082    /**
083     * Sets the value of the value property.
084     * 
085     * @param value
086     *     allowed object is
087     *     {@link String }
088     *     
089     */
090    public void setValue(String value) {
091        this.value = value;
092    }
093
094}