GTU.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// 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: 2016.11.03 at 01:02:34 PM CET
//
package org.opentrafficsim.road.network.factory.vissim.xsd;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for anonymous complex type.
* <p>
* The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="NAME" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="GTUTYPE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="LENGTH" use="required" type="{http://www.opentrafficsim.org/ots}LENGTHDISTTYPE" />
* <attribute name="WIDTH" use="required" type="{http://www.opentrafficsim.org/ots}LENGTHDISTTYPE" />
* <attribute name="MAXSPEED" use="required" type="{http://www.opentrafficsim.org/ots}SPEEDDISTTYPE" />
* <attribute ref="{http://www.w3.org/XML/1998/namespace}base"/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "GTU")
public class GTU
{
@XmlAttribute(name = "NAME", required = true)
protected String name;
@XmlAttribute(name = "GTUTYPE", required = true)
protected String gtutype;
@XmlAttribute(name = "LENGTH", required = true)
protected String length;
@XmlAttribute(name = "WIDTH", required = true)
protected String width;
@XmlAttribute(name = "MAXSPEED", required = true)
protected String maxspeed;
@XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlSchemaType(name = "anyURI")
protected String base;
/**
* 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 String; allowed object is {@link String }
*/
public void setNAME(String value)
{
this.name = value;
}
/**
* Gets the value of the gtutype property.
* @return possible object is {@link String }
*/
public String getGTUTYPE()
{
return gtutype;
}
/**
* Sets the value of the gtutype property.
* @param value String; allowed object is {@link String }
*/
public void setGTUTYPE(String value)
{
this.gtutype = value;
}
/**
* Gets the value of the length property.
* @return possible object is {@link String }
*/
public String getLENGTH()
{
return length;
}
/**
* Sets the value of the length property.
* @param value String; allowed object is {@link String }
*/
public void setLENGTH(String value)
{
this.length = value;
}
/**
* Gets the value of the width property.
* @return possible object is {@link String }
*/
public String getWIDTH()
{
return width;
}
/**
* Sets the value of the width property.
* @param value String; allowed object is {@link String }
*/
public void setWIDTH(String value)
{
this.width = value;
}
/**
* Gets the value of the maxspeed property.
* @return possible object is {@link String }
*/
public String getMAXSPEED()
{
return maxspeed;
}
/**
* Sets the value of the maxspeed property.
* @param value String; allowed object is {@link String }
*/
public void setMAXSPEED(String value)
{
this.maxspeed = value;
}
/**
* Gets the value of the base property.
* @return possible object is {@link String }
*/
public String getBase()
{
return base;
}
/**
* Sets the value of the base property.
* @param value String; allowed object is {@link String }
*/
public void setBase(String value)
{
this.base = value;
}
}