// // 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 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 ColumnType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ColumnType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Value" type="{}ValueType"/> * <element name="Timestamp" type="{}TimestampType"/> * </sequence> * <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="Field" type="{http://www.w3.org/2001/XMLSchema}int" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColumnType", propOrder = { "value", "timestamp" }) public class ColumnType { @XmlElement(name = "Value", required = true) protected ValueType value; @XmlElement(name = "Timestamp", required = true) protected TimestampType timestamp; @XmlAttribute(name = "Name") protected String name; @XmlAttribute(name = "Field") protected Integer field; /** * Gets the value of the value property. * * @return * possible object is * {@link ValueType } * */ public ValueType getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link ValueType } * */ public void setValue(ValueType value) { this.value = value; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link TimestampType } * */ public TimestampType getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link TimestampType } * */ public void setTimestamp(TimestampType value) { this.timestamp = 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 field property. * * @return * possible object is * {@link Integer } * */ public Integer getField() { return field; } /** * Sets the value of the field property. * * @param value * allowed object is * {@link Integer } * */ public void setField(Integer value) { this.field = value; } }