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.02.16 at 08:42:12 AM HST 006 // 007 008 009 package org.hackystat.telemetry.analyzer.configuration.jaxb; 010 011 import java.util.ArrayList; 012 import java.util.List; 013 import javax.xml.bind.annotation.XmlAccessType; 014 import javax.xml.bind.annotation.XmlAccessorType; 015 import javax.xml.bind.annotation.XmlAttribute; 016 import javax.xml.bind.annotation.XmlElement; 017 import javax.xml.bind.annotation.XmlRootElement; 018 import javax.xml.bind.annotation.XmlType; 019 020 021 /** 022 * <p>Java class for anonymous complex type. 023 * 024 * <p>The following schema fragment specifies the expected content contained within this class. 025 * 026 * <pre> 027 * <complexType> 028 * <complexContent> 029 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 030 * <sequence> 031 * <element ref="{}Value" maxOccurs="unbounded" minOccurs="0"/> 032 * </sequence> 033 * <attribute ref="{}Name use="required""/> 034 * <attribute ref="{}Default use="required""/> 035 * <attribute ref="{}MinValue"/> 036 * <attribute ref="{}MaxValue"/> 037 * </restriction> 038 * </complexContent> 039 * </complexType> 040 * </pre> 041 * 042 * 043 */ 044 @XmlAccessorType(XmlAccessType.FIELD) 045 @XmlType(name = "", propOrder = { 046 "value" 047 }) 048 @XmlRootElement(name = "Type") 049 public class Type { 050 051 @XmlElement(name = "Value") 052 protected List<String> value; 053 @XmlAttribute(name = "Name", required = true) 054 protected String name; 055 @XmlAttribute(name = "Default", required = true) 056 protected String _default; 057 @XmlAttribute(name = "MinValue") 058 protected String minValue; 059 @XmlAttribute(name = "MaxValue") 060 protected String maxValue; 061 062 /** 063 * Gets the value of the value property. 064 * 065 * <p> 066 * This accessor method returns a reference to the live list, 067 * not a snapshot. Therefore any modification you make to the 068 * returned list will be present inside the JAXB object. 069 * This is why there is not a <CODE>set</CODE> method for the value property. 070 * 071 * <p> 072 * For example, to add a new item, do as follows: 073 * <pre> 074 * getValue().add(newItem); 075 * </pre> 076 * 077 * 078 * <p> 079 * Objects of the following type(s) are allowed in the list 080 * {@link String } 081 * 082 * 083 */ 084 public List<String> getValue() { 085 if (value == null) { 086 value = new ArrayList<String>(); 087 } 088 return this.value; 089 } 090 091 /** 092 * Gets the value of the name property. 093 * 094 * @return 095 * possible object is 096 * {@link String } 097 * 098 */ 099 public String getName() { 100 return name; 101 } 102 103 /** 104 * Sets the value of the name property. 105 * 106 * @param value 107 * allowed object is 108 * {@link String } 109 * 110 */ 111 public void setName(String value) { 112 this.name = value; 113 } 114 115 /** 116 * Gets the value of the default property. 117 * 118 * @return 119 * possible object is 120 * {@link String } 121 * 122 */ 123 public String getDefault() { 124 return _default; 125 } 126 127 /** 128 * Sets the value of the default property. 129 * 130 * @param value 131 * allowed object is 132 * {@link String } 133 * 134 */ 135 public void setDefault(String value) { 136 this._default = value; 137 } 138 139 /** 140 * Gets the value of the minValue property. 141 * 142 * @return 143 * possible object is 144 * {@link String } 145 * 146 */ 147 public String getMinValue() { 148 return minValue; 149 } 150 151 /** 152 * Sets the value of the minValue property. 153 * 154 * @param value 155 * allowed object is 156 * {@link String } 157 * 158 */ 159 public void setMinValue(String value) { 160 this.minValue = value; 161 } 162 163 /** 164 * Gets the value of the maxValue property. 165 * 166 * @return 167 * possible object is 168 * {@link String } 169 * 170 */ 171 public String getMaxValue() { 172 return maxValue; 173 } 174 175 /** 176 * Sets the value of the maxValue property. 177 * 178 * @param value 179 * allowed object is 180 * {@link String } 181 * 182 */ 183 public void setMaxValue(String value) { 184 this.maxValue = value; 185 } 186 187 }