// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2014.05.02 at 02:03:35 PM UTC // package org.voltdb.compiler.projectfile; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for verticalpartitionsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="verticalpartitionsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="verticalpartition" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="column" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * <attribute name="table" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="indexed" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "verticalpartitionsType", propOrder = { "verticalpartition" }) public class VerticalpartitionsType { @XmlElement(required = true) protected List<VerticalpartitionsType.Verticalpartition> verticalpartition; /** * Gets the value of the verticalpartition 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 verticalpartition property. * * <p> * For example, to add a new item, do as follows: * <pre> * getVerticalpartition().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link VerticalpartitionsType.Verticalpartition } * * */ public List<VerticalpartitionsType.Verticalpartition> getVerticalpartition() { if (verticalpartition == null) { verticalpartition = new ArrayList<VerticalpartitionsType.Verticalpartition>(); } return this.verticalpartition; } /** * <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="column" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * <attribute name="table" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="indexed" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "column" }) public static class Verticalpartition { @XmlElement(required = true) protected List<String> column; @XmlAttribute(name = "table", required = true) protected String table; @XmlAttribute(name = "indexed") protected Boolean indexed; /** * Gets the value of the column 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 column property. * * <p> * For example, to add a new item, do as follows: * <pre> * getColumn().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getColumn() { if (column == null) { column = new ArrayList<String>(); } return this.column; } /** * Gets the value of the table property. * * @return * possible object is * {@link String } * */ public String getTable() { return table; } /** * Sets the value of the table property. * * @param value * allowed object is * {@link String } * */ public void setTable(String value) { this.table = value; } /** * Gets the value of the indexed property. * * @return * possible object is * {@link Boolean } * */ public boolean isIndexed() { if (indexed == null) { return true; } else { return indexed; } } /** * Sets the value of the indexed property. * * @param value * allowed object is * {@link Boolean } * */ public void setIndexed(Boolean value) { this.indexed = value; } } }