com.tibco.xmlns.bw.process._2003.ElementSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-model Show documentation
Show all versions of process-model Show documentation
The targetNamespace of this schema is "http://xmlns.tibco.com/bw/process/2003"
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-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.06.03 at 10:20:18 AM CEST
//
package com.tibco.xmlns.bw.process._2003;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.w3._2001.xmlschema.TopLevelElement;
/**
* Java class for ElementSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ElementSpec">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice minOccurs="0">
* <element ref="{http://www.w3.org/2001/XMLSchema}element"/>
* </choice>
* <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}QName" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementSpec", propOrder = {
"element"
})
public class ElementSpec {
@XmlElement(namespace = "http://www.w3.org/2001/XMLSchema")
protected TopLevelElement element;
@XmlAttribute(name = "ref")
protected QName ref;
/**
* Gets the value of the element property.
*
* @return
* possible object is
* {@link TopLevelElement }
*
*/
public TopLevelElement getElement() {
return element;
}
/**
* Sets the value of the element property.
*
* @param value
* allowed object is
* {@link TopLevelElement }
*
*/
public void setElement(TopLevelElement value) {
this.element = value;
}
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link QName }
*
*/
public QName getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link QName }
*
*/
public void setRef(QName value) {
this.ref = value;
}
}