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.03.24 at 12:05:54 PM HST 006 // 007 008 009 package org.hackystat.dailyprojectdata.resource.complexity.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.XmlSchemaType; 017 import javax.xml.bind.annotation.XmlType; 018 019 020 /** 021 * <p>Java class for anonymous complex type. 022 * 023 * <p>The following schema fragment specifies the expected content contained within this class. 024 * 025 * <pre> 026 * <complexType> 027 * <complexContent> 028 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 029 * <attribute ref="{}FileUri use="required""/> 030 * <attribute ref="{}ComplexityValues use="required""/> 031 * <attribute ref="{}TotalLines use="required""/> 032 * </restriction> 033 * </complexContent> 034 * </complexType> 035 * </pre> 036 * 037 * 038 */ 039 @XmlAccessorType(XmlAccessType.FIELD) 040 @XmlType(name = "") 041 @XmlRootElement(name = "FileData") 042 public class FileData 043 implements Serializable 044 { 045 046 private final static long serialVersionUID = 12343L; 047 @XmlAttribute(name = "FileUri", required = true) 048 @XmlSchemaType(name = "anyURI") 049 protected String fileUri; 050 @XmlAttribute(name = "ComplexityValues", required = true) 051 protected String complexityValues; 052 @XmlAttribute(name = "TotalLines", required = true) 053 protected String totalLines; 054 055 /** 056 * Gets the value of the fileUri property. 057 * 058 * @return 059 * possible object is 060 * {@link String } 061 * 062 */ 063 public String getFileUri() { 064 return fileUri; 065 } 066 067 /** 068 * Sets the value of the fileUri property. 069 * 070 * @param value 071 * allowed object is 072 * {@link String } 073 * 074 */ 075 public void setFileUri(String value) { 076 this.fileUri = value; 077 } 078 079 public boolean isSetFileUri() { 080 return (this.fileUri!= null); 081 } 082 083 /** 084 * Gets the value of the complexityValues property. 085 * 086 * @return 087 * possible object is 088 * {@link String } 089 * 090 */ 091 public String getComplexityValues() { 092 return complexityValues; 093 } 094 095 /** 096 * Sets the value of the complexityValues property. 097 * 098 * @param value 099 * allowed object is 100 * {@link String } 101 * 102 */ 103 public void setComplexityValues(String value) { 104 this.complexityValues = value; 105 } 106 107 public boolean isSetComplexityValues() { 108 return (this.complexityValues!= null); 109 } 110 111 /** 112 * Gets the value of the totalLines property. 113 * 114 * @return 115 * possible object is 116 * {@link String } 117 * 118 */ 119 public String getTotalLines() { 120 return totalLines; 121 } 122 123 /** 124 * Sets the value of the totalLines property. 125 * 126 * @param value 127 * allowed object is 128 * {@link String } 129 * 130 */ 131 public void setTotalLines(String value) { 132 this.totalLines = value; 133 } 134 135 public boolean isSetTotalLines() { 136 return (this.totalLines!= null); 137 } 138 139 }