001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 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: 2008.07.28 at 12:01:56 PM GMT-10:00 006 // 007 008 009 package org.hackystat.dailyprojectdata.resource.coverage.jaxb; 010 011 import java.io.Serializable; 012 import javax.xml.bind.annotation.XmlAccessType; 013 import javax.xml.bind.annotation.XmlAccessorType; 014 import javax.xml.bind.annotation.XmlAttribute; 015 import javax.xml.bind.annotation.XmlRootElement; 016 import javax.xml.bind.annotation.XmlType; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <complexContent> 027 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 028 * <attribute ref="{}Name"/> 029 * <attribute ref="{}NumCovered"/> 030 * <attribute ref="{}NumUncovered"/> 031 * </restriction> 032 * </complexContent> 033 * </complexType> 034 * </pre> 035 * 036 * 037 */ 038 @XmlAccessorType(XmlAccessType.FIELD) 039 @XmlType(name = "") 040 @XmlRootElement(name = "ConstructData") 041 public class ConstructData 042 implements Serializable 043 { 044 045 private final static long serialVersionUID = 12343L; 046 @XmlAttribute(name = "Name") 047 protected String name; 048 @XmlAttribute(name = "NumCovered") 049 protected Integer numCovered; 050 @XmlAttribute(name = "NumUncovered") 051 protected Integer numUncovered; 052 053 /** 054 * Gets the value of the name property. 055 * 056 * @return 057 * possible object is 058 * {@link String } 059 * 060 */ 061 public String getName() { 062 return name; 063 } 064 065 /** 066 * Sets the value of the name property. 067 * 068 * @param value 069 * allowed object is 070 * {@link String } 071 * 072 */ 073 public void setName(String value) { 074 this.name = value; 075 } 076 077 public boolean isSetName() { 078 return (this.name!= null); 079 } 080 081 /** 082 * Gets the value of the numCovered property. 083 * 084 * @return 085 * possible object is 086 * {@link Integer } 087 * 088 */ 089 public int getNumCovered() { 090 return numCovered; 091 } 092 093 /** 094 * Sets the value of the numCovered property. 095 * 096 * @param value 097 * allowed object is 098 * {@link Integer } 099 * 100 */ 101 public void setNumCovered(int value) { 102 this.numCovered = value; 103 } 104 105 public boolean isSetNumCovered() { 106 return (this.numCovered!= null); 107 } 108 109 public void unsetNumCovered() { 110 this.numCovered = null; 111 } 112 113 /** 114 * Gets the value of the numUncovered property. 115 * 116 * @return 117 * possible object is 118 * {@link Integer } 119 * 120 */ 121 public int getNumUncovered() { 122 return numUncovered; 123 } 124 125 /** 126 * Sets the value of the numUncovered property. 127 * 128 * @param value 129 * allowed object is 130 * {@link Integer } 131 * 132 */ 133 public void setNumUncovered(int value) { 134 this.numUncovered = value; 135 } 136 137 public boolean isSetNumUncovered() { 138 return (this.numUncovered!= null); 139 } 140 141 public void unsetNumUncovered() { 142 this.numUncovered = null; 143 } 144 145 }