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

org.apache.cxf.binding.corba.wsdl.Anonfixed Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.04.08 at 05:38:19 PM MDT 
//


package org.apache.cxf.binding.corba.wsdl;

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


/**
 * 

Java class for anonfixed complex type. * *

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

 * <complexType name="anonfixed">
 *   <complexContent>
 *     <extension base="{http://cxf.apache.org/bindings/corba}corbaType">
 *       <attribute name="digits" type="{http://cxf.apache.org/bindings/corba}ulong" />
 *       <attribute name="scale" type="{http://cxf.apache.org/bindings/corba}ulong" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "anonfixed") public class Anonfixed extends CorbaTypeImpl { @XmlAttribute(name = "digits") protected Long digits; @XmlAttribute(name = "scale") protected Long scale; /** * Gets the value of the digits property. * * @return * possible object is * {@link Long } * */ public long getDigits() { return digits; } /** * Sets the value of the digits property. * * @param value * allowed object is * {@link Long } * */ public void setDigits(long value) { this.digits = value; } public boolean isSetDigits() { return (this.digits!= null); } public void unsetDigits() { this.digits = null; } /** * Gets the value of the scale property. * * @return * possible object is * {@link Long } * */ public long getScale() { return scale; } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link Long } * */ public void setScale(long value) { this.scale = value; } public boolean isSetScale() { return (this.scale!= null); } public void unsetScale() { this.scale = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy