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.01.25 at 09:11:54 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.ant.checkstyle.jaxb; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlAttribute; 014 import javax.xml.bind.annotation.XmlRootElement; 015 import javax.xml.bind.annotation.XmlType; 016 017 018 /** 019 * <p>Java class for anonymous complex type. 020 * 021 * <p>The following schema fragment specifies the expected content contained within this class. 022 * 023 * <pre> 024 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <attribute ref="{}line"/> 028 * <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}int" /> 029 * <attribute ref="{}severity"/> 030 * <attribute ref="{}message"/> 031 * <attribute ref="{}source"/> 032 * </restriction> 033 * </complexContent> 034 * </complexType> 035 * </pre> 036 * 037 * 038 */ 039 @XmlAccessorType(XmlAccessType.FIELD) 040 @XmlType(name = "") 041 @XmlRootElement(name = "error") 042 public class Error { 043 044 @XmlAttribute 045 protected Integer line; 046 @XmlAttribute 047 protected Integer column; 048 @XmlAttribute 049 protected String severity; 050 @XmlAttribute 051 protected String message; 052 @XmlAttribute 053 protected String source; 054 055 /** 056 * Gets the value of the line property. 057 * 058 * @return 059 * possible object is 060 * {@link Integer } 061 * 062 */ 063 public Integer getLine() { 064 return line; 065 } 066 067 /** 068 * Sets the value of the line property. 069 * 070 * @param value 071 * allowed object is 072 * {@link Integer } 073 * 074 */ 075 public void setLine(Integer value) { 076 this.line = value; 077 } 078 079 /** 080 * Gets the value of the column property. 081 * 082 * @return 083 * possible object is 084 * {@link Integer } 085 * 086 */ 087 public Integer getColumn() { 088 return column; 089 } 090 091 /** 092 * Sets the value of the column property. 093 * 094 * @param value 095 * allowed object is 096 * {@link Integer } 097 * 098 */ 099 public void setColumn(Integer value) { 100 this.column = value; 101 } 102 103 /** 104 * Gets the value of the severity property. 105 * 106 * @return 107 * possible object is 108 * {@link String } 109 * 110 */ 111 public String getSeverity() { 112 return severity; 113 } 114 115 /** 116 * Sets the value of the severity property. 117 * 118 * @param value 119 * allowed object is 120 * {@link String } 121 * 122 */ 123 public void setSeverity(String value) { 124 this.severity = value; 125 } 126 127 /** 128 * Gets the value of the message property. 129 * 130 * @return 131 * possible object is 132 * {@link String } 133 * 134 */ 135 public String getMessage() { 136 return message; 137 } 138 139 /** 140 * Sets the value of the message property. 141 * 142 * @param value 143 * allowed object is 144 * {@link String } 145 * 146 */ 147 public void setMessage(String value) { 148 this.message = value; 149 } 150 151 /** 152 * Gets the value of the source property. 153 * 154 * @return 155 * possible object is 156 * {@link String } 157 * 158 */ 159 public String getSource() { 160 return source; 161 } 162 163 /** 164 * Sets the value of the source property. 165 * 166 * @param value 167 * allowed object is 168 * {@link String } 169 * 170 */ 171 public void setSource(String value) { 172 this.source = value; 173 } 174 175 }