org.openjax.expect_0_2.Script Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.09.19 at 10:25:07 PM ICT
//
package org.openjax.expect_0_2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="process" type="{http://www.openjax.org/expect-0.2.xsd}processType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"process"
})
@XmlRootElement(name = "script")
@java.lang.SuppressWarnings("all")
public class Script {
@XmlElement(required = true)
protected ProcessType process;
/**
* Gets the value of the process property.
*
* @return
* possible object is
* {@link ProcessType }
*
*/
public ProcessType getProcess() {
return process;
}
/**
* Sets the value of the process property.
*
* @param value
* allowed object is
* {@link ProcessType }
*
*/
public void setProcess(ProcessType value) {
this.process = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy