Alias.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 javax.xml.namespace.QName;
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 alias complex type</p>.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.</p>
 * 
 * <pre>{@code
 * <complexType name="alias">
 *   <complexContent>
 *     <extension base="{http://cxf.apache.org/bindings/corba}namedType">
 *       <attribute name="basetype" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * }</pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "alias", namespace = "http://cxf.apache.org/bindings/corba")
public class Alias
    extends NamedType
{

    @XmlAttribute(name = "basetype")
    protected QName basetype;

    /**
     * Gets the value of the basetype property.
     * 
     * @return
     *     possible object is
     *     {@link QName }
     *     
     */
    public QName getBasetype() {
        return basetype;
    }

    /**
     * Sets the value of the basetype property.
     * 
     * @param value
     *     allowed object is
     *     {@link QName }
     *     
     */
    public void setBasetype(QName value) {
        this.basetype = value;
    }

    public boolean isSetBasetype() {
        return (this.basetype!= null);
    }

}