// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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.08.02 at 12:16:58 PM BST // package net.sf.mpxj.primavera.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CodeAssignmentType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CodeAssignmentType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TypeObjectId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="ValueObjectId" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodeAssignmentType", propOrder = { "typeObjectId", "valueObjectId" }) public class CodeAssignmentType { @XmlElement(name = "TypeObjectId") protected int typeObjectId; @XmlElement(name = "ValueObjectId") protected int valueObjectId; /** * Gets the value of the typeObjectId property. * */ public int getTypeObjectId() { return typeObjectId; } /** * Sets the value of the typeObjectId property. * */ public void setTypeObjectId(int value) { this.typeObjectId = value; } /** * Gets the value of the valueObjectId property. * */ public int getValueObjectId() { return valueObjectId; } /** * Sets the value of the valueObjectId property. * */ public void setValueObjectId(int value) { this.valueObjectId = value; } }