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.15 at 02:12:29 PM GMT-10:00 006 // 007 008 009 package org.hackystat.telemetry.analyzer.reducer.jaxb; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlElement; 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 * <sequence> 028 * <element ref="{}Name" minOccurs="0"/> 029 * <element ref="{}Description" minOccurs="0"/> 030 * <element ref="{}Default" minOccurs="0"/> 031 * </sequence> 032 * </restriction> 033 * </complexContent> 034 * </complexType> 035 * </pre> 036 * 037 * 038 */ 039 @XmlAccessorType(XmlAccessType.FIELD) 040 @XmlType(name = "", propOrder = { 041 "name", 042 "description", 043 "_default" 044 }) 045 @XmlRootElement(name = "Parameter") 046 public class Parameter { 047 048 @XmlElement(name = "Name") 049 protected String name; 050 @XmlElement(name = "Description") 051 protected String description; 052 @XmlElement(name = "Default") 053 protected String _default; 054 055 /** 056 * Gets the value of the name property. 057 * 058 * @return 059 * possible object is 060 * {@link String } 061 * 062 */ 063 public String getName() { 064 return name; 065 } 066 067 /** 068 * Sets the value of the name property. 069 * 070 * @param value 071 * allowed object is 072 * {@link String } 073 * 074 */ 075 public void setName(String value) { 076 this.name = value; 077 } 078 079 /** 080 * Gets the value of the description property. 081 * 082 * @return 083 * possible object is 084 * {@link String } 085 * 086 */ 087 public String getDescription() { 088 return description; 089 } 090 091 /** 092 * Sets the value of the description property. 093 * 094 * @param value 095 * allowed object is 096 * {@link String } 097 * 098 */ 099 public void setDescription(String value) { 100 this.description = value; 101 } 102 103 /** 104 * Gets the value of the default property. 105 * 106 * @return 107 * possible object is 108 * {@link String } 109 * 110 */ 111 public String getDefault() { 112 return _default; 113 } 114 115 /** 116 * Sets the value of the default property. 117 * 118 * @param value 119 * allowed object is 120 * {@link String } 121 * 122 */ 123 public void setDefault(String value) { 124 this._default = value; 125 } 126 127 }