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

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

The newest version!

package org.example.schema.doubleit;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "numberToDouble" }) @XmlRootElement(name = "DoubleIt") public class DoubleIt { protected int numberToDouble; /** * Gets the value of the numberToDouble property. * */ public int getNumberToDouble() { return numberToDouble; } /** * Sets the value of the numberToDouble property. * */ public void setNumberToDouble(int value) { this.numberToDouble = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy