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

org.openjax.expect_0_2.Script Maven / Gradle / Ivy

Go to download

Module for the automation of interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. With this library you can wrap interactive applications in any java code.

There is a newer version: 0.2.16
Show newest version
//
// 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: 2019.07.22 at 07:08:49 AM UTC 
//


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") 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 - 2025 Weber Informatics LLC | Privacy Policy