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.*;
012
013
014/**
015 * <p>Java class for anonymous complex type.
016 * 
017 * <p>The following schema fragment specifies the expected content contained within this class.
018 * 
019 * <pre>
020 * &lt;complexType>
021 *   &lt;complexContent>
022 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
023 *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
024 *       &lt;attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
025 *     &lt;/restriction>
026 *   &lt;/complexContent>
027 * &lt;/complexType>
028 * </pre>
029 * 
030 * 
031 */
032@XmlAccessorType(XmlAccessType.FIELD)
033@XmlType(name = "", propOrder = {
034    "content"
035})
036@XmlRootElement(name = "requirement")
037public class Requirement {
038
039    @XmlValue
040    protected String content;
041
042
043    /**
044     * Gets the value of the content property.
045     * 
046     * @return
047     *     possible object is
048     *     {@link String }
049     *     
050     */
051    public String getContent() {
052        return content;
053    }
054
055    /**
056     * Sets the value of the content property.
057     *
058     * @param value
059     *     allowed object is
060     *     {@link String }
061     *
062     */
063    public void setContent(String value) {
064        this.content = value;
065    }
066
067}