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.06.27 at 11:37:07 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensorbase.resource.sensordatatypes.jaxb; 010 011 import javax.xml.bind.JAXBElement; 012 import javax.xml.bind.annotation.XmlElementDecl; 013 import javax.xml.bind.annotation.XmlRegistry; 014 import javax.xml.namespace.QName; 015 016 017 /** 018 * This object contains factory methods for each 019 * Java content interface and Java element interface 020 * generated in the org.hackystat.sensorbase.resource.sensordatatypes.jaxb package. 021 * <p>An ObjectFactory allows you to programatically 022 * construct new instances of the Java representation 023 * for XML content. The Java representation of XML 024 * content can consist of schema derived interfaces 025 * and classes representing the binding of schema 026 * type definitions, element declarations and model 027 * groups. Factory methods for each of these are 028 * provided in this class. 029 * 030 */ 031 @XmlRegistry 032 public class ObjectFactory { 033 034 private final static QName _Name_QNAME = new QName("", "Name"); 035 private final static QName _Description_QNAME = new QName("", "Description"); 036 private final static QName _Value_QNAME = new QName("", "Value"); 037 private final static QName _Key_QNAME = new QName("", "Key"); 038 039 /** 040 * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.hackystat.sensorbase.resource.sensordatatypes.jaxb 041 * 042 */ 043 public ObjectFactory() { 044 } 045 046 /** 047 * Create an instance of {@link SensorDataType } 048 * 049 */ 050 public SensorDataType createSensorDataType() { 051 return new SensorDataType(); 052 } 053 054 /** 055 * Create an instance of {@link SensorDataTypeRef } 056 * 057 */ 058 public SensorDataTypeRef createSensorDataTypeRef() { 059 return new SensorDataTypeRef(); 060 } 061 062 /** 063 * Create an instance of {@link SensorDataTypeIndex } 064 * 065 */ 066 public SensorDataTypeIndex createSensorDataTypeIndex() { 067 return new SensorDataTypeIndex(); 068 } 069 070 /** 071 * Create an instance of {@link SensorDataTypes } 072 * 073 */ 074 public SensorDataTypes createSensorDataTypes() { 075 return new SensorDataTypes(); 076 } 077 078 /** 079 * Create an instance of {@link Property } 080 * 081 */ 082 public Property createProperty() { 083 return new Property(); 084 } 085 086 /** 087 * Create an instance of {@link Properties } 088 * 089 */ 090 public Properties createProperties() { 091 return new Properties(); 092 } 093 094 /** 095 * Create an instance of {@link RequiredField } 096 * 097 */ 098 public RequiredField createRequiredField() { 099 return new RequiredField(); 100 } 101 102 /** 103 * Create an instance of {@link RequiredFields } 104 * 105 */ 106 public RequiredFields createRequiredFields() { 107 return new RequiredFields(); 108 } 109 110 /** 111 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 112 * 113 */ 114 @XmlElementDecl(namespace = "", name = "Name") 115 public JAXBElement<String> createName(String value) { 116 return new JAXBElement<String>(_Name_QNAME, String.class, null, value); 117 } 118 119 /** 120 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 121 * 122 */ 123 @XmlElementDecl(namespace = "", name = "Description") 124 public JAXBElement<String> createDescription(String value) { 125 return new JAXBElement<String>(_Description_QNAME, String.class, null, value); 126 } 127 128 /** 129 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 130 * 131 */ 132 @XmlElementDecl(namespace = "", name = "Value") 133 public JAXBElement<String> createValue(String value) { 134 return new JAXBElement<String>(_Value_QNAME, String.class, null, value); 135 } 136 137 /** 138 * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} 139 * 140 */ 141 @XmlElementDecl(namespace = "", name = "Key") 142 public JAXBElement<String> createKey(String value) { 143 return new JAXBElement<String>(_Key_QNAME, String.class, null, value); 144 } 145 146 }