// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.04.15 at 01:52:39 芟爬 CST // package com.wamdy.entitys; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice maxOccurs="unbounded" minOccurs="0"> * <element name="entity"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="package" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="asiaName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="author" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="tableName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fields"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="keyField"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="normalField" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entity" }) @XmlRootElement(name = "entitys") public class Entitys { protected List<Entitys.Entity> entity; /** * Gets the value of the entity property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the entity property. * * <p> * For example, to add a new item, do as follows: * <pre> * getEntity().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Entitys.Entity } * * */ public List<Entitys.Entity> getEntity() { if (entity == null) { entity = new ArrayList<Entitys.Entity>(); } return this.entity; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="package" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="asiaName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="author" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="tableName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fields"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="keyField"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="normalField" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "_package", "name", "asiaName", "author", "tableName", "note", "fields" }) public static class Entity { @XmlElement(name = "package", required = true) protected String _package; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String asiaName; protected String author; protected String tableName; protected String note; @XmlElement(required = true) protected Entitys.Entity.Fields fields; /** * Gets the value of the package property. * * @return * possible object is * {@link String } * */ public String getPackage() { return _package; } /** * Sets the value of the package property. * * @param value * allowed object is * {@link String } * */ public void setPackage(String value) { this._package = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the asiaName property. * * @return * possible object is * {@link String } * */ public String getAsiaName() { return asiaName; } /** * Sets the value of the asiaName property. * * @param value * allowed object is * {@link String } * */ public void setAsiaName(String value) { this.asiaName = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the tableName property. * * @return * possible object is * {@link String } * */ public String getTableName() { return tableName; } /** * Sets the value of the tableName property. * * @param value * allowed object is * {@link String } * */ public void setTableName(String value) { this.tableName = value; } /** * Gets the value of the note property. * * @return * possible object is * {@link String } * */ public String getNote() { return note; } /** * Sets the value of the note property. * * @param value * allowed object is * {@link String } * */ public void setNote(String value) { this.note = value; } /** * Gets the value of the fields property. * * @return * possible object is * {@link Entitys.Entity.Fields } * */ public Entitys.Entity.Fields getFields() { return fields; } /** * Sets the value of the fields property. * * @param value * allowed object is * {@link Entitys.Entity.Fields } * */ public void setFields(Entitys.Entity.Fields value) { this.fields = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="keyField"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="normalField" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "keyField", "normalField" }) public static class Fields { @XmlElement(required = true) protected Entitys.Entity.Fields.KeyField keyField; protected Entitys.Entity.Fields.NormalField normalField; /** * Gets the value of the keyField property. * * @return * possible object is * {@link Entitys.Entity.Fields.KeyField } * */ public Entitys.Entity.Fields.KeyField getKeyField() { return keyField; } /** * Sets the value of the keyField property. * * @param value * allowed object is * {@link Entitys.Entity.Fields.KeyField } * */ public void setKeyField(Entitys.Entity.Fields.KeyField value) { this.keyField = value; } /** * Gets the value of the normalField property. * * @return * possible object is * {@link Entitys.Entity.Fields.NormalField } * */ public Entitys.Entity.Fields.NormalField getNormalField() { return normalField; } /** * Sets the value of the normalField property. * * @param value * allowed object is * {@link Entitys.Entity.Fields.NormalField } * */ public void setNormalField(Entitys.Entity.Fields.NormalField value) { this.normalField = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "field" }) public static class KeyField { @XmlElement(required = true) protected Field field; /** * Gets the value of the field property. * * @return * possible object is * {@link Field } * */ public Field getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link Field } * */ public void setField(Field value) { this.field = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.wamdy.com/entitys}field" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "field" }) public static class NormalField { protected List<Field> field; /** * Gets the value of the field property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the field property. * * <p> * For example, to add a new item, do as follows: * <pre> * getField().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Field } * * */ public List<Field> getField() { if (field == null) { field = new ArrayList<Field>(); } return this.field; } } } } }
最近下载更多
fengshengtian LV8
2022年3月7日
差不多先生 LV1
2021年5月17日
zhuzhuqing121 LV2
2021年4月14日
admin_hhh LV3
2020年12月28日
andyhorse LV1
2020年7月25日
yaoyahui LV7
2020年7月15日
ALiSanWei LV1
2020年5月23日
feiyu8710 LV4
2020年5月11日
yuanchuan0716 LV3
2020年3月26日
蒋林园 LV2
2020年3月21日
最近浏览更多
WBelong LV8
3月28日
guviva LV6
2023年6月12日
yjdang LV3
2023年3月27日
微信网友_6319582217965568 LV3
2023年2月24日
taoshen95 LV15
2023年1月12日
ewan007 LV30
2022年9月25日
neuwxr2015 LV8
2022年9月1日
badboy1979 LV12
2022年6月5日
yinyun1985 LV14
2022年4月11日
fengshengtian LV8
2022年3月7日