Coverage Report - org.xmlhammer.model.jaxp.Catalog
 
Classes in this File Line Coverage Branch Coverage Complexity
Catalog
0% 
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.jaxp;
 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 catalog element declaration.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;element name="catalog">
 25  
  *   &lt;complexType>
 26  
  *     &lt;complexContent>
 27  
  *       &lt;extension base="{http://www.xmlhammer.org/2007/jaxp}activatable">
 28  
  *         &lt;attribute name="src" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 29  
  *       &lt;/extension>
 30  
  *     &lt;/complexContent>
 31  
  *   &lt;/complexType>
 32  
  * &lt;/element>
 33  
  * </pre>
 34  
  * 
 35  
  * 
 36  
  */
 37  
 @XmlAccessorType(XmlAccessType.FIELD)
 38  
 @XmlType(name = "")
 39  
 @XmlRootElement(name = "catalog")
 40  0
 public class Catalog
 41  
     extends Activatable
 42  
 {
 43  
 
 44  
     @XmlAttribute(required = true)
 45  
     protected String src;
 46  
 
 47  
     /**
 48  
      * Gets the value of the src property.
 49  
      * 
 50  
      * @return
 51  
      *     possible object is
 52  
      *     {@link String }
 53  
      *     
 54  
      */
 55  
     public String getSrc() {
 56  0
         return src;
 57  
     }
 58  
 
 59  
     /**
 60  
      * Sets the value of the src property.
 61  
      * 
 62  
      * @param value
 63  
      *     allowed object is
 64  
      *     {@link String }
 65  
      *     
 66  
      */
 67  
     public void setSrc(String value) {
 68  0
         this.src = value;
 69  0
     }
 70  
 
 71  
 }