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 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 tGuid complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType name="tGuid">
 *   &lt;simpleContent>
 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 *       &lt;attribute name="isPermaLink" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *     &lt;/extension>
 *   &lt;/simpleContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

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

    @XmlValue
    protected 1.5.0/docs/api/java/lang/String.html">String value;
    @XmlAttribute
    protected 1.5.0/docs/api/java/lang/Boolean.html">Boolean isPermaLink;

    /**
     * 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 isPermaLink property.
     *
     * @return
     *     possible object is
     *     {@link Boolean }
     *    
     */

    public boolean isIsPermaLink() {
        if (isPermaLink == null) {
            return true;
        } else {
            return isPermaLink;
        }
    }

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

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

}