1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2007.08.06 at 08:17:38 PM MSD 6 // 7 8 9 package org.riverock.dbrevision.annotation.schema.db; 10 11 import java.util.ArrayList; 12 import java.util.List; 13 import javax.xml.bind.annotation.XmlAccessType; 14 import javax.xml.bind.annotation.XmlAccessorType; 15 import javax.xml.bind.annotation.XmlAttribute; 16 import javax.xml.bind.annotation.XmlElement; 17 import javax.xml.bind.annotation.XmlRootElement; 18 import javax.xml.bind.annotation.XmlType; 19 20 21 /** 22 * <p>Java class for anonymous complex type. 23 * 24 * <p>The following schema fragment specifies the expected content contained within this class. 25 * 26 * <pre> 27 * <complexType> 28 * <complexContent> 29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 30 * <sequence> 31 * <element ref="{}RecordData" maxOccurs="unbounded"/> 32 * </sequence> 33 * <attribute name="tableName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> 34 * </restriction> 35 * </complexContent> 36 * </complexType> 37 * </pre> 38 * 39 * 40 */ 41 @XmlAccessorType(XmlAccessType.FIELD) 42 @XmlType(name = "", propOrder = { 43 "recordData" 44 }) 45 @XmlRootElement(name = "TableData", namespace = "") 46 public class TableData { 47 48 @XmlElement(name = "RecordData", required = true) 49 protected List<RecordData> recordData; 50 @XmlAttribute(required = true) 51 protected String tableName; 52 53 /** 54 * Gets the value of the recordData property. 55 * 56 * <p> 57 * This accessor method returns a reference to the live list, 58 * not a snapshot. Therefore any modification you make to the 59 * returned list will be present inside the JAXB object. 60 * This is why there is not a <CODE>set</CODE> method for the recordData property. 61 * 62 * <p> 63 * For example, to add a new item, do as follows: 64 * <pre> 65 * getRecordData().add(newItem); 66 * </pre> 67 * 68 * 69 * <p> 70 * Objects of the following type(s) are allowed in the list 71 * {@link RecordData } 72 * 73 * 74 */ 75 public List<RecordData> getRecordData() { 76 if (recordData == null) { 77 recordData = new ArrayList<RecordData>(); 78 } 79 return this.recordData; 80 } 81 82 /** 83 * Gets the value of the tableName property. 84 * 85 * @return 86 * possible object is 87 * {@link String } 88 * 89 */ 90 public String getTableName() { 91 return tableName; 92 } 93 94 /** 95 * Sets the value of the tableName property. 96 * 97 * @param value 98 * allowed object is 99 * {@link String } 100 * 101 */ 102 public void setTableName(String value) { 103 this.tableName = value; 104 } 105 106 }