Subversion Repositories bacoAlunos

Rev

Rev 190 | Blame | Compare with Previous | Last modification | View Log | RSS feed

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
// 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: 2008.05.28 at 05:04:01 PM BST
//


package pt.estgp.rss;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * <p>Java class for tEnclosure complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType name="tEnclosure">
 *   &lt;simpleContent>
 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 *       &lt;attribute name="length" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *       &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       &lt;attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     &lt;/extension>
 *   &lt;/simpleContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tEnclosure", propOrder = {
    "value"
})
public class TEnclosure {

    @XmlValue
    protected 1.5.0/docs/api/java/lang/String.html">String value;
    @XmlAttribute(required = true)
    protected 1.5.0/docs/api/java/math/BigInteger.html">BigInteger length;
    @XmlAttribute(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String type;
    @XmlAttribute(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String url;

    /**
     * Gets the value of the value property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getValue() {
        return value;
    }

    /**
     * Sets the value of the value property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setValue(1.5.0/docs/api/java/lang/String.html">String value) {
        this.value = value;
    }

    /**
     * Gets the value of the length property.
     *
     * @return
     *     possible object is
     *     {@link BigInteger }
     *    
     */

    public 1.5.0/docs/api/java/math/BigInteger.html">BigInteger getLength() {
        return length;
    }

    /**
     * Sets the value of the length property.
     *
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *    
     */

    public void setLength(1.5.0/docs/api/java/math/BigInteger.html">BigInteger value) {
        this.length = value;
    }

    /**
     * Gets the value of the type property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getType() {
        return type;
    }

    /**
     * Sets the value of the type property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setType(1.5.0/docs/api/java/lang/String.html">String value) {
        this.type = value;
    }

    /**
     * Gets the value of the url property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getUrl() {
        return url;
    }

    /**
     * Sets the value of the url property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setUrl(1.5.0/docs/api/java/lang/String.html">String value) {
        this.url = value;
    }

}