// // 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: 2007.10.19 at 01:36:41 PM PDT // package com.facebook.infrastructure.loader; 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 ColumnFamilyType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ColumnFamilyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Column" type="{}ColumnType" maxOccurs="unbounded"/> * <element name="SuperColumn" type="{}SuperColumnType"/> * <element name="Directory" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="Delimiter" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColumnFamilyType", propOrder = { "column", "superColumn", "directory", "delimiter" }) public class ColumnFamilyType { @XmlElement(name = "Column", required = true, nillable = true) protected List<ColumnType> column; @XmlElement(name = "SuperColumn", required = true, nillable = true) protected SuperColumnType superColumn; @XmlElement(name = "Directory", required = true) protected String directory; @XmlElement(name = "Delimiter", required = true) protected String delimiter; @XmlAttribute(name = "Name") protected String name; /** * 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 ColumnType } * * */ public List<ColumnType> getColumn() { if (column == null) { column = new ArrayList<ColumnType>(); } return this.column; } /** * Gets the value of the superColumn property. * * @return * possible object is * {@link SuperColumnType } * */ public SuperColumnType getSuperColumn() { return superColumn; } /** * Sets the value of the superColumn property. * * @param value * allowed object is * {@link SuperColumnType } * */ public void setSuperColumn(SuperColumnType value) { this.superColumn = value; } /** * Gets the value of the directory property. * * @return * possible object is * {@link String } * */ public String getDirectory() { return directory; } /** * Sets the value of the directory property. * * @param value * allowed object is * {@link String } * */ public void setDirectory(String value) { this.directory = value; } /** * Gets the value of the delimiter property. * * @return * possible object is * {@link String } * */ public String getDelimiter() { return delimiter; } /** * Sets the value of the delimiter property. * * @param value * allowed object is * {@link String } * */ public void setDelimiter(String value) { this.delimiter = 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; } }