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:58 PM GMT-10:00 006 // 007 008 009 package org.hackystat.dailyprojectdata.resource.commit.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="{}MemberUri"/> 029 * <attribute ref="{}Commits"/> 030 * <attribute ref="{}LinesAdded"/> 031 * <attribute ref="{}LinesDeleted"/> 032 * <attribute ref="{}LinesModified"/> 033 * </restriction> 034 * </complexContent> 035 * </complexType> 036 * </pre> 037 * 038 * 039 */ 040 @XmlAccessorType(XmlAccessType.FIELD) 041 @XmlType(name = "") 042 @XmlRootElement(name = "MemberData") 043 public class MemberData 044 implements Serializable 045 { 046 047 private final static long serialVersionUID = 12343L; 048 @XmlAttribute(name = "MemberUri") 049 protected String memberUri; 050 @XmlAttribute(name = "Commits") 051 protected Integer commits; 052 @XmlAttribute(name = "LinesAdded") 053 protected Integer linesAdded; 054 @XmlAttribute(name = "LinesDeleted") 055 protected Integer linesDeleted; 056 @XmlAttribute(name = "LinesModified") 057 protected Integer linesModified; 058 059 /** 060 * Gets the value of the memberUri property. 061 * 062 * @return 063 * possible object is 064 * {@link String } 065 * 066 */ 067 public String getMemberUri() { 068 return memberUri; 069 } 070 071 /** 072 * Sets the value of the memberUri property. 073 * 074 * @param value 075 * allowed object is 076 * {@link String } 077 * 078 */ 079 public void setMemberUri(String value) { 080 this.memberUri = value; 081 } 082 083 public boolean isSetMemberUri() { 084 return (this.memberUri!= null); 085 } 086 087 /** 088 * Gets the value of the commits property. 089 * 090 * @return 091 * possible object is 092 * {@link Integer } 093 * 094 */ 095 public int getCommits() { 096 return commits; 097 } 098 099 /** 100 * Sets the value of the commits property. 101 * 102 * @param value 103 * allowed object is 104 * {@link Integer } 105 * 106 */ 107 public void setCommits(int value) { 108 this.commits = value; 109 } 110 111 public boolean isSetCommits() { 112 return (this.commits!= null); 113 } 114 115 public void unsetCommits() { 116 this.commits = null; 117 } 118 119 /** 120 * Gets the value of the linesAdded property. 121 * 122 * @return 123 * possible object is 124 * {@link Integer } 125 * 126 */ 127 public int getLinesAdded() { 128 return linesAdded; 129 } 130 131 /** 132 * Sets the value of the linesAdded property. 133 * 134 * @param value 135 * allowed object is 136 * {@link Integer } 137 * 138 */ 139 public void setLinesAdded(int value) { 140 this.linesAdded = value; 141 } 142 143 public boolean isSetLinesAdded() { 144 return (this.linesAdded!= null); 145 } 146 147 public void unsetLinesAdded() { 148 this.linesAdded = null; 149 } 150 151 /** 152 * Gets the value of the linesDeleted property. 153 * 154 * @return 155 * possible object is 156 * {@link Integer } 157 * 158 */ 159 public int getLinesDeleted() { 160 return linesDeleted; 161 } 162 163 /** 164 * Sets the value of the linesDeleted property. 165 * 166 * @param value 167 * allowed object is 168 * {@link Integer } 169 * 170 */ 171 public void setLinesDeleted(int value) { 172 this.linesDeleted = value; 173 } 174 175 public boolean isSetLinesDeleted() { 176 return (this.linesDeleted!= null); 177 } 178 179 public void unsetLinesDeleted() { 180 this.linesDeleted = null; 181 } 182 183 /** 184 * Gets the value of the linesModified property. 185 * 186 * @return 187 * possible object is 188 * {@link Integer } 189 * 190 */ 191 public int getLinesModified() { 192 return linesModified; 193 } 194 195 /** 196 * Sets the value of the linesModified property. 197 * 198 * @param value 199 * allowed object is 200 * {@link Integer } 201 * 202 */ 203 public void setLinesModified(int value) { 204 this.linesModified = value; 205 } 206 207 public boolean isSetLinesModified() { 208 return (this.linesModified!= null); 209 } 210 211 public void unsetLinesModified() { 212 this.linesModified = null; 213 } 214 215 }