Fixed.java

//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


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

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


/**
 * <p>Java class for fixed complex type</p>.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.</p>
 * 
 * <pre>{@code
 * <complexType name="fixed">
 *   <complexContent>
 *     <extension base="{http://cxf.apache.org/bindings/corba}namedType">
 *       <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>
 * }</pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fixed", namespace = "http://cxf.apache.org/bindings/corba")
public class Fixed
    extends NamedType
{

    @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;
    }

}