blob: 2e5dd526c8b5c19c9288fe29061d797d82d6a9f6 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 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: 2011.02.15 at 04:31:32 PM CET
//
package org.eclipse.ptp.rm.lml.internal.core.elements;
import java.io.Serializable;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for job_part_type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="job_part_type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="cpucount" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
* &lt;attribute name="cpupernode" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "job_part_type")
public class JobPartType implements Serializable {
@XmlAttribute(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger cpucount;
@XmlAttribute
@XmlSchemaType(name = "positiveInteger")
protected BigInteger cpupernode;
/**
* Gets the value of the cpucount property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCpucount() {
return cpucount;
}
/**
* Sets the value of the cpucount property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCpucount(BigInteger value) {
this.cpucount = value;
}
/**
* Gets the value of the cpupernode property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCpupernode() {
return cpupernode;
}
/**
* Sets the value of the cpupernode property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCpupernode(BigInteger value) {
this.cpupernode = value;
}
}