Coverage Report - org.xmlhammer.model.project.Type
 
Classes in this File Line Coverage Branch Coverage Complexity
Type
71% 
N/A 
0
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
 3  
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 4  
 // Any modifications to this file will be lost upon recompilation of the source schema. 
 5  
 // Generated on: 2007.09.26 at 09:37:45 PM IST 
 6  
 //
 7  
 
 8  
 
 9  
 package org.xmlhammer.model.project;
 10  
 
 11  
 import javax.xml.bind.annotation.XmlAccessType;
 12  
 import javax.xml.bind.annotation.XmlAccessorType;
 13  
 import javax.xml.bind.annotation.XmlAttribute;
 14  
 import javax.xml.bind.annotation.XmlRootElement;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for type element declaration.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;element name="type">
 25  
  *   &lt;complexType>
 26  
  *     &lt;complexContent>
 27  
  *       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 28  
  *         &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 29  
  *         &lt;attribute name="namespace" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 30  
  *       &lt;/restriction>
 31  
  *     &lt;/complexContent>
 32  
  *   &lt;/complexType>
 33  
  * &lt;/element>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "")
 40  
 @XmlRootElement(name = "type")
 41  264
 public class Type {
 42  
 
 43  
     @XmlAttribute(required = true)
 44  
     protected java.lang.String name;
 45  
     @XmlAttribute(required = true)
 46  
     protected java.lang.String namespace;
 47  
 
 48  
     /**
 49  
      * Gets the value of the name property.
 50  
      * 
 51  
      * @return
 52  
      *     possible object is
 53  
      *     {@link java.lang.String }
 54  
      *     
 55  
      */
 56  
     public java.lang.String getName() {
 57  0
         return name;
 58  
     }
 59  
 
 60  
     /**
 61  
      * Sets the value of the name property.
 62  
      * 
 63  
      * @param value
 64  
      *     allowed object is
 65  
      *     {@link java.lang.String }
 66  
      *     
 67  
      */
 68  
     public void setName(java.lang.String value) {
 69  264
         this.name = value;
 70  264
     }
 71  
 
 72  
     /**
 73  
      * Gets the value of the namespace property.
 74  
      * 
 75  
      * @return
 76  
      *     possible object is
 77  
      *     {@link java.lang.String }
 78  
      *     
 79  
      */
 80  
     public java.lang.String getNamespace() {
 81  0
         return namespace;
 82  
     }
 83  
 
 84  
     /**
 85  
      * Sets the value of the namespace property.
 86  
      * 
 87  
      * @param value
 88  
      *     allowed object is
 89  
      *     {@link java.lang.String }
 90  
      *     
 91  
      */
 92  
     public void setNamespace(java.lang.String value) {
 93  264
         this.namespace = value;
 94  264
     }
 95  
 
 96  
 }