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

org.apache.cxf.binding.corba.wsdl.Anonarray 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: 2013.01.04 at 03:44:56 PM EST 
//


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;
import javax.xml.namespace.QName;


/**
 * Anonymous array type.
 * 
 * 

Java class for anonarray complex type. * *

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

 * <complexType name="anonarray">
 *   <complexContent>
 *     <extension base="{http://cxf.apache.org/bindings/corba}corbaType">
 *       <attribute name="elemtype" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *       <attribute name="bound" use="required" type="{http://cxf.apache.org/bindings/corba}ulong" />
 *       <attribute name="elemname" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "anonarray") public class Anonarray extends CorbaTypeImpl { @XmlAttribute(name = "elemtype", required = true) protected QName elemtype; @XmlAttribute(name = "bound", required = true) protected long bound; @XmlAttribute(name = "elemname", required = true) protected QName elemname; /** * Gets the value of the elemtype property. * * @return * possible object is * {@link QName } * */ public QName getElemtype() { return elemtype; } /** * Sets the value of the elemtype property. * * @param value * allowed object is * {@link QName } * */ public void setElemtype(QName value) { this.elemtype = value; } public boolean isSetElemtype() { return (this.elemtype!= null); } /** * Gets the value of the bound property. * */ public long getBound() { return bound; } /** * Sets the value of the bound property. * */ public void setBound(long value) { this.bound = value; } public boolean isSetBound() { return true; } /** * Gets the value of the elemname property. * * @return * possible object is * {@link QName } * */ public QName getElemname() { return elemname; } /** * Sets the value of the elemname property. * * @param value * allowed object is * {@link QName } * */ public void setElemname(QName value) { this.elemname = value; } public boolean isSetElemname() { return (this.elemname!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy