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

org.example.schema.doubleit.DoubleIt4 Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version

package org.example.schema.doubleit;

import javax.activation.DataHandler;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="numberToDouble" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="ImageData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numberToDouble", "imageData" }) @XmlRootElement(name = "DoubleIt4") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") public class DoubleIt4 { @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") protected int numberToDouble; @XmlElement(name = "ImageData", required = true) @XmlMimeType("application/octet-stream") @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") protected DataHandler imageData; /** * Gets the value of the numberToDouble property. * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") public int getNumberToDouble() { return numberToDouble; } /** * Sets the value of the numberToDouble property. * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") public void setNumberToDouble(int value) { this.numberToDouble = value; } /** * Gets the value of the imageData property. * * @return * possible object is * {@link DataHandler } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") public DataHandler getImageData() { return imageData; } /** * Sets the value of the imageData property. * * @param value * allowed object is * {@link DataHandler } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11") public void setImageData(DataHandler value) { this.imageData = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy