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:53 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.ant.emma.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 name="value" type="{http://www.w3.org/2001/XMLSchema}int" /> 028 * </restriction> 029 * </complexContent> 030 * </complexType> 031 * </pre> 032 * 033 * 034 */ 035 @XmlAccessorType(XmlAccessType.FIELD) 036 @XmlType(name = "") 037 @XmlRootElement(name = "srclines") 038 public class Srclines { 039 040 @XmlAttribute 041 protected Integer value; 042 043 /** 044 * Gets the value of the value property. 045 * 046 * @return 047 * possible object is 048 * {@link Integer } 049 * 050 */ 051 public Integer getValue() { 052 return value; 053 } 054 055 /** 056 * Sets the value of the value property. 057 * 058 * @param value 059 * allowed object is 060 * {@link Integer } 061 * 062 */ 063 public void setValue(Integer value) { 064 this.value = value; 065 } 066 067 }