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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.ImageItemType 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 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * Details for an image of a given category. 
 * 
 * 

Java class for ImageItemType complex type. * *

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

 * <complexType name="ImageItemType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="URL" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="UnitOfMeasureCode" type="{http://www.opentravel.org/OTA/2003/05}OTA_CodeType" />
 *       <attribute name="Width" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
 *       <attribute name="Height" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageItemType", propOrder = { "url" }) @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.ImageDescriptionType.ImageFormat.class }) public class ImageItemType { @XmlElement(name = "URL") @XmlSchemaType(name = "anyURI") protected String url; @XmlAttribute(name = "UnitOfMeasureCode") protected String unitOfMeasureCode; @XmlAttribute(name = "Width") @XmlSchemaType(name = "positiveInteger") protected BigInteger width; @XmlAttribute(name = "Height") @XmlSchemaType(name = "positiveInteger") protected BigInteger height; /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getURL() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setURL(String value) { this.url = value; } /** * Gets the value of the unitOfMeasureCode property. * * @return * possible object is * {@link String } * */ public String getUnitOfMeasureCode() { return unitOfMeasureCode; } /** * Sets the value of the unitOfMeasureCode property. * * @param value * allowed object is * {@link String } * */ public void setUnitOfMeasureCode(String value) { this.unitOfMeasureCode = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link BigInteger } * */ public void setWidth(BigInteger value) { this.width = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link BigInteger } * */ public void setHeight(BigInteger value) { this.height = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy