// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 // 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: 2010.12.20 at 06:00:42 PM CET // package de.osmui.model.osm; 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; /** * Describes an input or output pipe of a task. * * <p>Java class for tPipe complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tPipe"> * <complexContent> * <extension base="{http://uni-stuttgart.de/iev/osmosisTaskDescription}tHasDescription"> * <attribute name="type" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="entity"/> * <enumeration value="change"/> * <enumeration value="dataset"/> * </restriction> * </simpleType> * </attribute> * <attribute name="count" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="single"/> * <enumeration value="variable"/> * </restriction> * </simpleType> * </attribute> * <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> * <attribute name="specifiedBy" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tPipe") public class TPipe extends THasDescription { @XmlAttribute(required = true) protected String type; @XmlAttribute(required = true) protected String count; @XmlAttribute @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger index; @XmlAttribute protected String specifiedBy; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the count property. * * @return * possible object is * {@link String } * */ public String getCount() { return count; } /** * Sets the value of the count property. * * @param value * allowed object is * {@link String } * */ public void setCount(String value) { this.count = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link BigInteger } * */ public void setIndex(BigInteger value) { this.index = value; } /** * Gets the value of the specifiedBy property. * * @return * possible object is * {@link String } * */ public String getSpecifiedBy() { return specifiedBy; } /** * Sets the value of the specifiedBy property. * * @param value * allowed object is * {@link String } * */ public void setSpecifiedBy(String value) { this.specifiedBy = value; } }