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:56 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.ant.javancss.jaxb; 010 011 import java.math.BigInteger; 012 import javax.xml.bind.annotation.XmlAccessType; 013 import javax.xml.bind.annotation.XmlAccessorType; 014 import javax.xml.bind.annotation.XmlElement; 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 * <sequence> 029 * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> 030 * <element name="ncss" type="{http://www.w3.org/2001/XMLSchema}string"/> 031 * <element name="ccn" type="{http://www.w3.org/2001/XMLSchema}integer"/> 032 * <element name="javadocs" type="{http://www.w3.org/2001/XMLSchema}integer"/> 033 * </sequence> 034 * </restriction> 035 * </complexContent> 036 * </complexType> 037 * </pre> 038 * 039 * 040 */ 041 @XmlAccessorType(XmlAccessType.FIELD) 042 @XmlType(name = "", propOrder = { 043 "name", 044 "ncss", 045 "ccn", 046 "javadocs" 047 }) 048 @XmlRootElement(name = "function") 049 public class Function { 050 051 @XmlElement(required = true) 052 protected String name; 053 @XmlElement(required = true) 054 protected String ncss; 055 @XmlElement(required = true) 056 protected BigInteger ccn; 057 @XmlElement(required = true) 058 protected BigInteger javadocs; 059 060 /** 061 * Gets the value of the name property. 062 * 063 * @return 064 * possible object is 065 * {@link String } 066 * 067 */ 068 public String getName() { 069 return name; 070 } 071 072 /** 073 * Sets the value of the name property. 074 * 075 * @param value 076 * allowed object is 077 * {@link String } 078 * 079 */ 080 public void setName(String value) { 081 this.name = value; 082 } 083 084 /** 085 * Gets the value of the ncss property. 086 * 087 * @return 088 * possible object is 089 * {@link String } 090 * 091 */ 092 public String getNcss() { 093 return ncss; 094 } 095 096 /** 097 * Sets the value of the ncss property. 098 * 099 * @param value 100 * allowed object is 101 * {@link String } 102 * 103 */ 104 public void setNcss(String value) { 105 this.ncss = value; 106 } 107 108 /** 109 * Gets the value of the ccn property. 110 * 111 * @return 112 * possible object is 113 * {@link BigInteger } 114 * 115 */ 116 public BigInteger getCcn() { 117 return ccn; 118 } 119 120 /** 121 * Sets the value of the ccn property. 122 * 123 * @param value 124 * allowed object is 125 * {@link BigInteger } 126 * 127 */ 128 public void setCcn(BigInteger value) { 129 this.ccn = value; 130 } 131 132 /** 133 * Gets the value of the javadocs property. 134 * 135 * @return 136 * possible object is 137 * {@link BigInteger } 138 * 139 */ 140 public BigInteger getJavadocs() { 141 return javadocs; 142 } 143 144 /** 145 * Sets the value of the javadocs property. 146 * 147 * @param value 148 * allowed object is 149 * {@link BigInteger } 150 * 151 */ 152 public void setJavadocs(BigInteger value) { 153 this.javadocs = value; 154 } 155 156 }