All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.ota_tools.jaxb.ota2010a.ping.EquipmentType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.31 at 04:22:27 PM PST 
//


package net.sourceforge.ota_tools.jaxb.ota2010a.ping;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * Specifies the aircraft equipment type.
 * 
 * 

Java class for EquipmentType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EquipmentType">
 *   <simpleContent>
 *     <extension base="<http://www.opentravel.org/OTA/2003/05>StringLength0to64">
 *       <attribute name="AirEquipType" type="{http://www.opentravel.org/OTA/2003/05}StringLength3" />
 *       <attribute name="ChangeofGauge" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EquipmentType", propOrder = { "value" }) public class EquipmentType { @XmlValue protected String value; @XmlAttribute(name = "AirEquipType") protected String airEquipType; @XmlAttribute(name = "ChangeofGauge") protected Boolean changeofGauge; /** * Used for Character Strings, length 0 to 64. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the airEquipType property. * * @return * possible object is * {@link String } * */ public String getAirEquipType() { return airEquipType; } /** * Sets the value of the airEquipType property. * * @param value * allowed object is * {@link String } * */ public void setAirEquipType(String value) { this.airEquipType = value; } /** * Gets the value of the changeofGauge property. * * @return * possible object is * {@link Boolean } * */ public Boolean getChangeofGauge() { return changeofGauge; } /** * Sets the value of the changeofGauge property. * * @param value * allowed object is * {@link Boolean } * */ public void setChangeofGauge(Boolean value) { this.changeofGauge = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy