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.07.15 at 10:02:34 AM GMT-10:00 006 // 007 008 009 package org.hackystat.telemetry.service.resource.chart.jaxb; 010 011 import java.io.Serializable; 012 import javax.xml.bind.annotation.XmlAccessType; 013 import javax.xml.bind.annotation.XmlAccessorType; 014 import javax.xml.bind.annotation.XmlAttribute; 015 import javax.xml.bind.annotation.XmlElement; 016 import javax.xml.bind.annotation.XmlRootElement; 017 import javax.xml.bind.annotation.XmlType; 018 019 020 /** 021 * <p>Java class for anonymous complex type. 022 * 023 * <p>The following schema fragment specifies the expected content contained within this class. 024 * 025 * <pre> 026 * <complexType> 027 * <complexContent> 028 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 029 * <sequence> 030 * <element ref="{}Type"/> 031 * <element ref="{}Description" minOccurs="0"/> 032 * </sequence> 033 * <attribute ref="{}Name use="required""/> 034 * </restriction> 035 * </complexContent> 036 * </complexType> 037 * </pre> 038 * 039 * 040 */ 041 @XmlAccessorType(XmlAccessType.FIELD) 042 @XmlType(name = "", propOrder = { 043 "type", 044 "description" 045 }) 046 @XmlRootElement(name = "ParameterDefinition") 047 public class ParameterDefinition 048 implements Serializable 049 { 050 051 private final static long serialVersionUID = 12343L; 052 @XmlElement(name = "Type", required = true) 053 protected Type type; 054 @XmlElement(name = "Description") 055 protected String description; 056 @XmlAttribute(name = "Name", required = true) 057 protected String name; 058 059 /** 060 * Gets the value of the type property. 061 * 062 * @return 063 * possible object is 064 * {@link Type } 065 * 066 */ 067 public Type getType() { 068 return type; 069 } 070 071 /** 072 * Sets the value of the type property. 073 * 074 * @param value 075 * allowed object is 076 * {@link Type } 077 * 078 */ 079 public void setType(Type value) { 080 this.type = value; 081 } 082 083 public boolean isSetType() { 084 return (this.type!= null); 085 } 086 087 /** 088 * Gets the value of the description property. 089 * 090 * @return 091 * possible object is 092 * {@link String } 093 * 094 */ 095 public String getDescription() { 096 return description; 097 } 098 099 /** 100 * Sets the value of the description property. 101 * 102 * @param value 103 * allowed object is 104 * {@link String } 105 * 106 */ 107 public void setDescription(String value) { 108 this.description = value; 109 } 110 111 public boolean isSetDescription() { 112 return (this.description!= null); 113 } 114 115 /** 116 * Gets the value of the name property. 117 * 118 * @return 119 * possible object is 120 * {@link String } 121 * 122 */ 123 public String getName() { 124 return name; 125 } 126 127 /** 128 * Sets the value of the name property. 129 * 130 * @param value 131 * allowed object is 132 * {@link String } 133 * 134 */ 135 public void setName(String value) { 136 this.name = value; 137 } 138 139 public boolean isSetName() { 140 return (this.name!= null); 141 } 142 143 }